[1] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
---|
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
---|
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
---|
| 4 | <modelVersion>4.0.0</modelVersion>
|
---|
| 5 |
|
---|
| 6 | <groupId>tudelft.utilities</groupId>
|
---|
| 7 | <artifactId>statistic</artifactId>
|
---|
[122] | 8 | <version>1.0.3</version>
|
---|
[1] | 9 | <packaging>jar</packaging>
|
---|
| 10 |
|
---|
| 11 |
|
---|
| 12 | <properties>
|
---|
| 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
---|
| 14 | <maven.compiler.target>1.8</maven.compiler.target>
|
---|
| 15 | <maven.compiler.source>1.8</maven.compiler.source>
|
---|
| 16 | <basedir>.</basedir>
|
---|
| 17 | <passwd>${env.ARTIFACTORY_PASS}</passwd>
|
---|
| 18 | </properties>
|
---|
| 19 |
|
---|
| 20 |
|
---|
| 21 | <dependencies>
|
---|
| 22 | <dependency>
|
---|
| 23 | <groupId>junit</groupId>
|
---|
| 24 | <artifactId>junit</artifactId>
|
---|
| 25 | <version>4.12</version>
|
---|
| 26 | </dependency>
|
---|
| 27 |
|
---|
| 28 | <dependency>
|
---|
| 29 | <groupId>tudelft.utilities</groupId>
|
---|
| 30 | <artifactId>junit</artifactId>
|
---|
| 31 | <version>1.0.0</version>
|
---|
| 32 | </dependency>
|
---|
| 33 | </dependencies>
|
---|
| 34 |
|
---|
| 35 |
|
---|
| 36 |
|
---|
| 37 | <distributionManagement>
|
---|
| 38 | <repository>
|
---|
| 39 | <id>artifactory.ewi.tudelft.nl</id>
|
---|
| 40 | <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
|
---|
| 41 | </repository>
|
---|
| 42 | </distributionManagement>
|
---|
| 43 |
|
---|
| 44 |
|
---|
| 45 | <repositories>
|
---|
| 46 | <repository>
|
---|
| 47 | <id>artifactory.ewi.tudelft.nl</id>
|
---|
| 48 | <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
|
---|
| 49 | <snapshots>
|
---|
| 50 | <enabled>false</enabled>
|
---|
| 51 | </snapshots>
|
---|
| 52 | </repository>
|
---|
| 53 |
|
---|
| 54 | </repositories>
|
---|
| 55 |
|
---|
| 56 | <pluginRepositories>
|
---|
| 57 | <pluginRepository>
|
---|
[122] | 58 | <id>central</id>
|
---|
| 59 | <url>https://repo1.maven.org/</url>
|
---|
[1] | 60 | </pluginRepository>
|
---|
[122] | 61 | <pluginRepository>
|
---|
| 62 | <id>jfrog-plugins-release</id>
|
---|
| 63 | <name>plugins-release</name>
|
---|
| 64 | <url>https://oss.jfrog.org/artifactory/plugins-release</url>
|
---|
| 65 | </pluginRepository>
|
---|
[1] | 66 | </pluginRepositories>
|
---|
| 67 |
|
---|
| 68 | <build>
|
---|
| 69 |
|
---|
| 70 | <plugins>
|
---|
| 71 | <plugin>
|
---|
| 72 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 73 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
| 74 | <version>3.6.1</version>
|
---|
| 75 | <configuration>
|
---|
| 76 | <source>1.8</source>
|
---|
| 77 | <target>1.8</target>
|
---|
| 78 | </configuration>
|
---|
| 79 | </plugin>
|
---|
| 80 |
|
---|
| 81 | <plugin>
|
---|
| 82 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 83 | <artifactId>maven-javadoc-plugin</artifactId>
|
---|
| 84 | <version>2.10.1</version>
|
---|
| 85 | <executions>
|
---|
| 86 | <execution>
|
---|
| 87 | <id>attach-javadocs</id>
|
---|
| 88 | <goals>
|
---|
| 89 | <goal>jar</goal>
|
---|
| 90 | </goals>
|
---|
| 91 | <configuration>
|
---|
| 92 | <additionalparam>${javadoc.opts}</additionalparam>
|
---|
| 93 | <additionalparam>-Xdoclint:none</additionalparam>
|
---|
| 94 | </configuration>
|
---|
| 95 | </execution>
|
---|
| 96 | </executions>
|
---|
| 97 | </plugin>
|
---|
| 98 |
|
---|
| 99 | <plugin>
|
---|
| 100 | <groupId>org.jfrog.buildinfo</groupId>
|
---|
| 101 | <artifactId>artifactory-maven-plugin</artifactId>
|
---|
| 102 | <version>2.6.1</version>
|
---|
| 103 | <executions>
|
---|
| 104 | <execution>
|
---|
| 105 | <id>build-info</id>
|
---|
| 106 | <goals>
|
---|
| 107 | <goal>publish</goal>
|
---|
| 108 | </goals>
|
---|
| 109 | <configuration>
|
---|
| 110 | <publisher>
|
---|
| 111 | <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
|
---|
| 112 | <repoKey>libs-release</repoKey>
|
---|
| 113 | <username>wouter</username>
|
---|
| 114 | <password>${passwd}</password>
|
---|
| 115 | </publisher>
|
---|
| 116 | </configuration>
|
---|
| 117 | </execution>
|
---|
| 118 | </executions>
|
---|
| 119 | </plugin>
|
---|
| 120 |
|
---|
| 121 | <plugin>
|
---|
| 122 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 123 | <artifactId>maven-assembly-plugin</artifactId>
|
---|
| 124 | <version>2.4.1</version>
|
---|
| 125 | <configuration>
|
---|
| 126 | <!-- get all project dependencies -->
|
---|
| 127 | <descriptorRefs>
|
---|
| 128 | <descriptorRef>jar-with-dependencies</descriptorRef>
|
---|
| 129 | </descriptorRefs>
|
---|
| 130 | <archive>
|
---|
| 131 | <manifest>
|
---|
| 132 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
---|
| 133 | <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
---|
| 134 | </manifest>
|
---|
| 135 | </archive>
|
---|
| 136 | </configuration>
|
---|
| 137 | <executions>
|
---|
| 138 | <execution>
|
---|
| 139 | <id>make-assembly</id>
|
---|
| 140 | <!-- bind to the packaging phase -->
|
---|
| 141 | <phase>package</phase>
|
---|
| 142 | <goals>
|
---|
| 143 | <goal>single</goal>
|
---|
| 144 | </goals>
|
---|
| 145 | </execution>
|
---|
| 146 | </executions>
|
---|
| 147 | </plugin>
|
---|
| 148 |
|
---|
| 149 |
|
---|
| 150 | </plugins>
|
---|
| 151 |
|
---|
| 152 | <pluginManagement>
|
---|
| 153 | <plugins>
|
---|
| 154 | <plugin>
|
---|
| 155 | <groupId>org.eclipse.m2e</groupId>
|
---|
| 156 | <artifactId>lifecycle-mapping</artifactId>
|
---|
| 157 | <version>1.0.0</version>
|
---|
| 158 | <configuration>
|
---|
| 159 | <lifecycleMappingMetadata>
|
---|
| 160 | <pluginExecutions>
|
---|
| 161 | <pluginExecution>
|
---|
| 162 | <pluginExecutionFilter>
|
---|
| 163 | <groupId>org.jfrog.buildinfo</groupId>
|
---|
| 164 | <artifactId>artifactory-maven-plugin</artifactId>
|
---|
| 165 | <versionRange>[1.0.0,)</versionRange>
|
---|
| 166 | <goals>
|
---|
| 167 | <goal>publish</goal>
|
---|
| 168 | </goals>
|
---|
| 169 | </pluginExecutionFilter>
|
---|
| 170 | <action>
|
---|
| 171 | <ignore />
|
---|
| 172 | </action>
|
---|
| 173 | </pluginExecution>
|
---|
| 174 | </pluginExecutions>
|
---|
| 175 | </lifecycleMappingMetadata>
|
---|
| 176 | </configuration>
|
---|
| 177 | </plugin>
|
---|
| 178 | </plugins>
|
---|
| 179 | </pluginManagement>
|
---|
| 180 |
|
---|
| 181 |
|
---|
| 182 | </build>
|
---|
| 183 |
|
---|
| 184 | </project> |
---|