“b4bf6e765280bad2df63aa865865626e2cd9f9c5”上不存在“bsp/stm32/stm32l475-atk-pandora/.cproject”
pom.xml 5.7 KB
Newer Older
Z
zhangxin10 已提交
1 2 3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
4 5 6 7 8
    <parent>
        <artifactId>skywalking-storage-center</artifactId>
        <groupId>com.a.eye</groupId>
        <version>2.0-2016</version>
    </parent>
Z
zhangxin10 已提交
9

10
    <artifactId>skywalking-storage</artifactId>
Z
zhangxin10 已提交
11 12 13 14 15 16 17 18
    <packaging>jar</packaging>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
19
            <groupId>com.a.eye</groupId>
20
            <artifactId>skywalking-registry</artifactId>
21
            <version>${project.version}</version>
Z
zhangxin10 已提交
22
        </dependency>
wu-sheng's avatar
wu-sheng 已提交
23 24
        <dependency>
            <groupId>com.a.eye</groupId>
25 26
            <artifactId>skywalking-logging-impl-log4j2</artifactId>
            <version>${project.version}</version>
wu-sheng's avatar
wu-sheng 已提交
27
        </dependency>
wu-sheng's avatar
wu-sheng 已提交
28 29
        <dependency>
            <groupId>com.a.eye</groupId>
30
            <artifactId>skywalking-health-report</artifactId>
wu-sheng's avatar
wu-sheng 已提交
31 32
            <version>${project.version}</version>
        </dependency>
33 34 35 36 37
        <dependency>
            <groupId>org.hsqldb</groupId>
            <artifactId>hsqldb</artifactId>
            <version>2.3.4</version>
        </dependency>
38 39 40 41 42
        <dependency>
            <groupId>com.zaxxer</groupId>
            <artifactId>HikariCP</artifactId>
            <version>2.4.3</version>
        </dependency>
43

Z
zhangxin10 已提交
44 45 46 47 48 49 50 51 52 53
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.6</version>
                <executions>
                    <execution>
                        <id>copy-resources</id>
54
                        <phase>package</phase>
Z
zhangxin10 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
                        <goals>
                            <goal>copy-resources</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${project.build.directory}/installer/config</outputDirectory>
                            <resources>
                                <resource>
                                    <directory>src/main/resources</directory>
                                    <filtering>false</filtering>
                                </resource>
                            </resources>
                        </configuration>
                    </execution>
                    <execution>
                        <id>copy-start-script</id>
70
                        <phase>package</phase>
Z
zhangxin10 已提交
71 72 73 74
                        <goals>
                            <goal>copy-resources</goal>
                        </goals>
                        <configuration>
Z
zhangxin10 已提交
75
                            <outputDirectory>${project.build.directory}/installer/bin</outputDirectory>
Z
zhangxin10 已提交
76 77
                            <resources>
                                <resource>
Z
zhangxin10 已提交
78
                                    <directory>bin</directory>
Z
zhangxin10 已提交
79 80 81 82 83 84 85 86 87 88 89 90
                                    <filtering>false</filtering>
                                </resource>
                            </resources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <id>copy-dependencies</id>
91
                        <phase>package</phase>
Z
zhangxin10 已提交
92 93 94 95 96 97
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
Z
zhangxin10 已提交
98
                    <outputDirectory>${project.build.directory}/installer/lib</outputDirectory>
Z
zhangxin10 已提交
99 100 101 102
                    <excludeTransitive>false</excludeTransitive>
                    <stripVersion>true</stripVersion>
                </configuration>
            </plugin>
Z
zhangxin10 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
            <plugin>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>*.properties</exclude>
                        <exclude>*.xml</exclude>
                    </excludes>
                    <outputDirectory>${project.build.directory}/installer/lib</outputDirectory>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-antrun-plugin</artifactId>
                <executions>
                    <execution>
                        <id>clean</id>
                        <phase>package</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <configuration>
                            <tasks>
                                <mkdir dir="${project.build.directory}/installer/data/buffer"/>
                                <mkdir dir="${project.build.directory}/installer/data/offset"/>
                                <mkdir dir="${project.build.directory}/installer/log"/>
                                <mkdir dir="${project.build.directory}/installer/bin"/>
                            </tasks>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
Z
zhangxin10 已提交
133 134
        </plugins>
    </build>
A
ascrutae 已提交
135

A
ascrutae 已提交
136 137 138 139 140 141 142 143 144 145
    <repositories>
        <repository>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
            <id>bintray-wu-sheng-DataCarrier</id>
            <name>bintray</name>
            <url>http://dl.bintray.com/wu-sheng/DataCarrier</url>
        </repository>
    </repositories>
Z
zhangxin10 已提交
146
</project>