[20] | 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>geniusweb</groupId>
|
---|
| 7 | <artifactId>boa</artifactId>
|
---|
[24] | 8 | <version>1.5.3</version> <!-- must equal ${geniusweb.version} -->
|
---|
[20] | 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 | <jackson-2-version>2.9.10</jackson-2-version>
|
---|
[24] | 19 | <geniusweb.version>1.5.3</geniusweb.version>
|
---|
[20] | 20 | </properties>
|
---|
| 21 |
|
---|
| 22 | <distributionManagement>
|
---|
| 23 | <repository>
|
---|
| 24 | <id>artifactory.ewi.tudelft.nl</id>
|
---|
| 25 | <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
|
---|
| 26 | </repository>
|
---|
| 27 | </distributionManagement>
|
---|
| 28 |
|
---|
| 29 |
|
---|
| 30 | <dependencies>
|
---|
| 31 | <dependency>
|
---|
| 32 | <groupId>geniusweb</groupId>
|
---|
| 33 | <artifactId>party</artifactId>
|
---|
| 34 | <version>${geniusweb.version}</version>
|
---|
| 35 | </dependency>
|
---|
| 36 | <dependency>
|
---|
| 37 | <groupId>geniusweb</groupId>
|
---|
| 38 | <artifactId>profile</artifactId>
|
---|
| 39 | <version>${geniusweb.version}</version>
|
---|
| 40 | </dependency>
|
---|
| 41 | <dependency>
|
---|
| 42 | <groupId>geniusweb</groupId>
|
---|
| 43 | <artifactId>events</artifactId>
|
---|
| 44 | <version>${geniusweb.version}</version>
|
---|
| 45 | </dependency>
|
---|
| 46 | <dependency>
|
---|
| 47 | <groupId>geniusweb</groupId>
|
---|
| 48 | <artifactId>timeline</artifactId>
|
---|
| 49 | <version>${geniusweb.version}</version>
|
---|
| 50 | </dependency>
|
---|
| 51 | <dependency>
|
---|
| 52 | <groupId>geniusweb</groupId>
|
---|
| 53 | <artifactId>profileconnection</artifactId>
|
---|
| 54 | <version>${geniusweb.version}</version>
|
---|
| 55 | </dependency>
|
---|
| 56 | <dependency>
|
---|
| 57 | <groupId>geniusweb</groupId>
|
---|
| 58 | <artifactId>bidspace</artifactId>
|
---|
| 59 | <version>${geniusweb.version}</version>
|
---|
| 60 | </dependency>
|
---|
| 61 | <dependency>
|
---|
| 62 | <groupId>geniusweb</groupId>
|
---|
| 63 | <artifactId>opponentmodel</artifactId>
|
---|
| 64 | <version>${geniusweb.version}</version>
|
---|
| 65 | </dependency>
|
---|
| 66 |
|
---|
| 67 | <dependency>
|
---|
| 68 | <groupId>tudelft.utilities</groupId>
|
---|
| 69 | <artifactId>logging</artifactId>
|
---|
| 70 | <version>1.0.0</version>
|
---|
| 71 | </dependency>
|
---|
| 72 |
|
---|
| 73 | <dependency>
|
---|
| 74 | <groupId>junit</groupId>
|
---|
| 75 | <artifactId>junit</artifactId>
|
---|
| 76 | <version>4.12</version>
|
---|
| 77 | <scope>test</scope>
|
---|
| 78 | </dependency>
|
---|
| 79 | <dependency>
|
---|
| 80 | <groupId>org.mockito</groupId>
|
---|
| 81 | <artifactId>mockito-all</artifactId>
|
---|
| 82 | <version>1.9.5</version>
|
---|
| 83 | <scope>test</scope>
|
---|
| 84 | </dependency>
|
---|
| 85 |
|
---|
| 86 | </dependencies>
|
---|
| 87 |
|
---|
| 88 |
|
---|
| 89 | <repositories>
|
---|
| 90 | <repository>
|
---|
| 91 | <id>artifactory.ewi.tudelft.nl</id>
|
---|
| 92 | <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
|
---|
| 93 | <snapshots>
|
---|
| 94 | <enabled>false</enabled>
|
---|
| 95 | </snapshots>
|
---|
| 96 | </repository>
|
---|
| 97 |
|
---|
| 98 | </repositories>
|
---|
| 99 |
|
---|
| 100 | <pluginRepositories>
|
---|
| 101 | <pluginRepository>
|
---|
| 102 | <id>jcenter</id>
|
---|
| 103 | <url>https://jcenter.bintray.com</url>
|
---|
| 104 | </pluginRepository>
|
---|
| 105 | </pluginRepositories>
|
---|
| 106 |
|
---|
| 107 |
|
---|
| 108 | <build>
|
---|
| 109 |
|
---|
| 110 | <plugins>
|
---|
| 111 | <plugin>
|
---|
| 112 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 113 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
| 114 | <version>3.8.0</version>
|
---|
| 115 | <configuration>
|
---|
| 116 | <source>1.8</source>
|
---|
| 117 | <target>1.8</target>
|
---|
| 118 | </configuration>
|
---|
| 119 | </plugin>
|
---|
| 120 | <plugin>
|
---|
| 121 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 122 | <artifactId>maven-source-plugin</artifactId>
|
---|
| 123 | <executions>
|
---|
| 124 | <execution>
|
---|
| 125 | <id>attach-sources</id>
|
---|
| 126 | <goals>
|
---|
| 127 | <goal>jar</goal>
|
---|
| 128 | </goals>
|
---|
| 129 | </execution>
|
---|
| 130 | </executions>
|
---|
| 131 | </plugin>
|
---|
| 132 |
|
---|
| 133 | <plugin>
|
---|
| 134 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 135 | <artifactId>maven-jar-plugin</artifactId>
|
---|
| 136 | <configuration>
|
---|
| 137 | <archive>
|
---|
| 138 | <manifest>
|
---|
| 139 | <mainClass>geniusweb.boa.BoaParty</mainClass>
|
---|
| 140 | </manifest>
|
---|
| 141 | </archive>
|
---|
| 142 | </configuration>
|
---|
| 143 | </plugin>
|
---|
| 144 |
|
---|
| 145 | <plugin>
|
---|
| 146 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 147 | <artifactId>maven-javadoc-plugin</artifactId>
|
---|
[24] | 148 | <version>3.2.0</version>
|
---|
[20] | 149 | <executions>
|
---|
| 150 | <execution>
|
---|
| 151 | <id>attach-javadocs</id>
|
---|
| 152 | <goals>
|
---|
| 153 | <goal>jar</goal>
|
---|
| 154 | </goals>
|
---|
| 155 | </execution>
|
---|
| 156 | </executions>
|
---|
| 157 | </plugin>
|
---|
| 158 |
|
---|
| 159 | <plugin>
|
---|
| 160 | <groupId>org.jfrog.buildinfo</groupId>
|
---|
| 161 | <artifactId>artifactory-maven-plugin</artifactId>
|
---|
| 162 | <version>2.6.1</version>
|
---|
| 163 | <executions>
|
---|
| 164 | <execution>
|
---|
| 165 | <id>build-info</id>
|
---|
| 166 | <goals>
|
---|
| 167 | <goal>publish</goal>
|
---|
| 168 | </goals>
|
---|
| 169 | <configuration>
|
---|
| 170 | <publisher>
|
---|
| 171 | <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
|
---|
| 172 | <repoKey>libs-release</repoKey>
|
---|
| 173 | <username>wouter</username>
|
---|
| 174 | <password>${passwd}</password>
|
---|
| 175 | </publisher>
|
---|
| 176 | </configuration>
|
---|
| 177 | </execution>
|
---|
| 178 | </executions>
|
---|
| 179 | </plugin>
|
---|
| 180 |
|
---|
| 181 | <plugin>
|
---|
| 182 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 183 | <artifactId>maven-assembly-plugin</artifactId>
|
---|
| 184 | <version>2.4.1</version>
|
---|
| 185 | <configuration>
|
---|
| 186 | <!-- get all project dependencies -->
|
---|
| 187 | <descriptorRefs>
|
---|
| 188 | <descriptorRef>jar-with-dependencies</descriptorRef>
|
---|
| 189 | </descriptorRefs>
|
---|
| 190 | <archive>
|
---|
| 191 | <manifest>
|
---|
| 192 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
---|
| 193 | <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
---|
| 194 | <mainClass>geniusweb.boa.BoaParty</mainClass>
|
---|
| 195 | </manifest>
|
---|
| 196 | </archive>
|
---|
| 197 | </configuration>
|
---|
| 198 | <executions>
|
---|
| 199 | <execution>
|
---|
| 200 | <id>make-assembly</id>
|
---|
| 201 | <!-- bind to the packaging phase -->
|
---|
| 202 | <phase>package</phase>
|
---|
| 203 | <goals>
|
---|
| 204 | <goal>single</goal>
|
---|
| 205 | </goals>
|
---|
| 206 | </execution>
|
---|
| 207 | </executions>
|
---|
| 208 | </plugin>
|
---|
| 209 |
|
---|
| 210 |
|
---|
| 211 | </plugins>
|
---|
| 212 |
|
---|
| 213 | <pluginManagement>
|
---|
| 214 | <plugins>
|
---|
| 215 | <plugin>
|
---|
| 216 | <groupId>org.eclipse.m2e</groupId>
|
---|
| 217 | <artifactId>lifecycle-mapping</artifactId>
|
---|
| 218 | <version>1.0.0</version>
|
---|
| 219 | <configuration>
|
---|
| 220 | <lifecycleMappingMetadata>
|
---|
| 221 | <pluginExecutions>
|
---|
| 222 | <pluginExecution>
|
---|
| 223 | <pluginExecutionFilter>
|
---|
| 224 | <groupId>org.jfrog.buildinfo</groupId>
|
---|
| 225 | <artifactId>artifactory-maven-plugin</artifactId>
|
---|
| 226 | <versionRange>[1.0.0,)</versionRange>
|
---|
| 227 | <goals>
|
---|
| 228 | <goal>publish</goal>
|
---|
| 229 | </goals>
|
---|
| 230 | </pluginExecutionFilter>
|
---|
| 231 | <action>
|
---|
| 232 | <ignore />
|
---|
| 233 | </action>
|
---|
| 234 | </pluginExecution>
|
---|
| 235 | </pluginExecutions>
|
---|
| 236 | </lifecycleMappingMetadata>
|
---|
| 237 | </configuration>
|
---|
| 238 | </plugin>
|
---|
| 239 | </plugins>
|
---|
| 240 | </pluginManagement>
|
---|
| 241 |
|
---|
| 242 |
|
---|
| 243 | </build>
|
---|
| 244 | </project>
|
---|