[12] | 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.exampleparties.anac2019</groupId>
|
---|
| 7 | <artifactId>winkyagent</artifactId>
|
---|
[22] | 8 | <version>1.5.1</version> <!-- must equal ${geniusweb.version} -->
|
---|
[12] | 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.6</jackson-2-version>
|
---|
[22] | 19 | <geniusweb.version>1.5.1</geniusweb.version>
|
---|
[12] | 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 |
|
---|
| 32 | <dependency>
|
---|
| 33 | <groupId>geniusweb</groupId>
|
---|
| 34 | <artifactId>issuevalue</artifactId>
|
---|
[18] | 35 | <version>${geniusweb.version}</version>
|
---|
[12] | 36 | </dependency>
|
---|
| 37 |
|
---|
| 38 | <dependency>
|
---|
| 39 | <groupId>geniusweb</groupId>
|
---|
| 40 | <artifactId>party</artifactId>
|
---|
[18] | 41 | <version>${geniusweb.version}</version>
|
---|
[12] | 42 | </dependency>
|
---|
| 43 |
|
---|
| 44 | <dependency>
|
---|
| 45 | <groupId>geniusweb</groupId>
|
---|
| 46 | <artifactId>bidspace</artifactId>
|
---|
[18] | 47 | <version>${geniusweb.version}</version>
|
---|
[12] | 48 | </dependency>
|
---|
| 49 | <dependency>
|
---|
| 50 | <groupId>geniusweb</groupId>
|
---|
| 51 | <artifactId>profileconnection</artifactId>
|
---|
[18] | 52 | <version>${geniusweb.version}</version>
|
---|
[12] | 53 | </dependency>
|
---|
| 54 | <dependency>
|
---|
| 55 | <groupId>tudelft.utilities</groupId>
|
---|
| 56 | <artifactId>logging</artifactId>
|
---|
| 57 | <version>1.0.0</version>
|
---|
| 58 | </dependency>
|
---|
| 59 | <dependency>
|
---|
| 60 | <groupId>tudelft.utilities</groupId>
|
---|
| 61 | <artifactId>immutablelist</artifactId>
|
---|
[21] | 62 | <version>1.1.1</version>
|
---|
[12] | 63 | </dependency>
|
---|
| 64 |
|
---|
| 65 | <!-- the core, which includes Streaming API, shared low-level abstractions
|
---|
| 66 | (but NOT data-binding) -->
|
---|
| 67 | <dependency>
|
---|
| 68 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
| 69 | <artifactId>jackson-core</artifactId>
|
---|
| 70 | <version>${jackson-2-version}</version>
|
---|
| 71 | <scope>test</scope>
|
---|
| 72 | </dependency>
|
---|
| 73 |
|
---|
| 74 | <!-- Just the annotations; use this dependency if you want to attach annotations
|
---|
| 75 | to classes without connecting them to the code. -->
|
---|
| 76 | <dependency>
|
---|
| 77 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
| 78 | <artifactId>jackson-annotations</artifactId>
|
---|
| 79 | <version>${jackson-2-version}</version>
|
---|
| 80 | <scope>test</scope>
|
---|
| 81 | </dependency>
|
---|
| 82 |
|
---|
| 83 | <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
|
---|
| 84 | <dependency>
|
---|
| 85 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
| 86 | <artifactId>jackson-databind</artifactId>
|
---|
| 87 | <version>${jackson-2-version}</version>
|
---|
| 88 | <scope>test</scope>
|
---|
| 89 | </dependency>
|
---|
| 90 |
|
---|
| 91 | <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
|
---|
| 92 | <dependency>
|
---|
| 93 | <groupId>com.fasterxml.jackson.dataformat</groupId>
|
---|
| 94 | <artifactId>jackson-dataformat-smile</artifactId>
|
---|
| 95 | <version>${jackson-2-version}</version>
|
---|
| 96 | <scope>test</scope>
|
---|
| 97 | </dependency>
|
---|
| 98 | <!-- JAX-RS provider -->
|
---|
| 99 | <dependency>
|
---|
| 100 | <groupId>com.fasterxml.jackson.jaxrs</groupId>
|
---|
| 101 | <artifactId>jackson-jaxrs-json-provider</artifactId>
|
---|
| 102 | <version>${jackson-2-version}</version>
|
---|
| 103 | <scope>test</scope>
|
---|
| 104 | </dependency>
|
---|
| 105 | <!-- Support for JAX-B annotations as additional configuration -->
|
---|
| 106 | <dependency>
|
---|
| 107 | <groupId>com.fasterxml.jackson.module</groupId>
|
---|
| 108 | <artifactId>jackson-module-jaxb-annotations</artifactId>
|
---|
| 109 | <version>${jackson-2-version}</version>
|
---|
| 110 | <scope>test</scope>
|
---|
| 111 | </dependency>
|
---|
| 112 | <dependency>
|
---|
| 113 | <groupId>junit</groupId>
|
---|
| 114 | <artifactId>junit</artifactId>
|
---|
| 115 | <version>4.12</version>
|
---|
| 116 | <scope>test</scope>
|
---|
| 117 | </dependency>
|
---|
| 118 | <dependency>
|
---|
| 119 | <groupId>org.mockito</groupId>
|
---|
| 120 | <artifactId>mockito-all</artifactId>
|
---|
| 121 | <version>1.9.5</version>
|
---|
| 122 | <scope>test</scope>
|
---|
| 123 | </dependency>
|
---|
| 124 | <dependency>
|
---|
| 125 | <groupId>tudelft.utilities</groupId>
|
---|
| 126 | <artifactId>junit</artifactId>
|
---|
| 127 | <version>1.0.1</version>
|
---|
| 128 | <scope>test</scope>
|
---|
| 129 | </dependency>
|
---|
| 130 |
|
---|
| 131 | </dependencies>
|
---|
| 132 |
|
---|
| 133 |
|
---|
| 134 | <repositories>
|
---|
| 135 | <repository>
|
---|
| 136 | <id>artifactory.ewi.tudelft.nl</id>
|
---|
| 137 | <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
|
---|
| 138 | <snapshots>
|
---|
| 139 | <enabled>false</enabled>
|
---|
| 140 | </snapshots>
|
---|
| 141 | </repository>
|
---|
| 142 |
|
---|
| 143 | </repositories>
|
---|
| 144 |
|
---|
| 145 | <pluginRepositories>
|
---|
| 146 | <pluginRepository>
|
---|
| 147 | <id>jcenter</id>
|
---|
[13] | 148 | <url>https://jcenter.bintray.com</url>
|
---|
[12] | 149 | </pluginRepository>
|
---|
| 150 | </pluginRepositories>
|
---|
| 151 |
|
---|
| 152 |
|
---|
| 153 | <build>
|
---|
| 154 |
|
---|
| 155 | <plugins>
|
---|
| 156 | <plugin>
|
---|
| 157 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 158 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
| 159 | <version>3.8.0</version>
|
---|
| 160 | <configuration>
|
---|
| 161 | <source>1.8</source>
|
---|
| 162 | <target>1.8</target>
|
---|
| 163 | </configuration>
|
---|
| 164 | </plugin>
|
---|
| 165 | <plugin>
|
---|
| 166 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 167 | <artifactId>maven-source-plugin</artifactId>
|
---|
| 168 | <version>3.1.0</version>
|
---|
| 169 | <executions>
|
---|
| 170 | <execution>
|
---|
| 171 | <id>attach-sources</id>
|
---|
| 172 | <goals>
|
---|
| 173 | <goal>jar</goal>
|
---|
| 174 | </goals>
|
---|
| 175 | </execution>
|
---|
| 176 | </executions>
|
---|
| 177 | </plugin>
|
---|
| 178 |
|
---|
| 179 | <plugin>
|
---|
| 180 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 181 | <artifactId>maven-jar-plugin</artifactId>
|
---|
| 182 | <configuration>
|
---|
| 183 | <archive>
|
---|
| 184 | <manifest>
|
---|
| 185 | <mainClass>geniusweb.exampleparties.anac2019.winkyagent.WinkyAgent</mainClass>
|
---|
| 186 | </manifest>
|
---|
| 187 | </archive>
|
---|
| 188 | </configuration>
|
---|
| 189 | </plugin>
|
---|
| 190 |
|
---|
| 191 | <plugin>
|
---|
| 192 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 193 | <artifactId>maven-javadoc-plugin</artifactId>
|
---|
| 194 | <version>2.10.1</version>
|
---|
| 195 | <executions>
|
---|
| 196 | <execution>
|
---|
| 197 | <id>attach-javadocs</id>
|
---|
| 198 | <goals>
|
---|
| 199 | <goal>jar</goal>
|
---|
| 200 | </goals>
|
---|
| 201 | <configuration>
|
---|
| 202 | <additionalparam>${javadoc.opts}</additionalparam>
|
---|
| 203 | <additionalparam>-Xdoclint:none</additionalparam>
|
---|
| 204 | </configuration>
|
---|
| 205 | </execution>
|
---|
| 206 | </executions>
|
---|
| 207 | </plugin>
|
---|
| 208 |
|
---|
| 209 | <plugin>
|
---|
| 210 | <groupId>org.jfrog.buildinfo</groupId>
|
---|
| 211 | <artifactId>artifactory-maven-plugin</artifactId>
|
---|
| 212 | <version>2.6.1</version>
|
---|
| 213 | <executions>
|
---|
| 214 | <execution>
|
---|
| 215 | <id>build-info</id>
|
---|
| 216 | <goals>
|
---|
| 217 | <goal>publish</goal>
|
---|
| 218 | </goals>
|
---|
| 219 | <configuration>
|
---|
| 220 | <publisher>
|
---|
| 221 | <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
|
---|
| 222 | <repoKey>libs-release</repoKey>
|
---|
| 223 | <username>wouter</username>
|
---|
| 224 | <password>${passwd}</password>
|
---|
| 225 | </publisher>
|
---|
| 226 | </configuration>
|
---|
| 227 | </execution>
|
---|
| 228 | </executions>
|
---|
| 229 | </plugin>
|
---|
| 230 |
|
---|
| 231 | <plugin>
|
---|
| 232 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 233 | <artifactId>maven-assembly-plugin</artifactId>
|
---|
| 234 | <version>2.4.1</version>
|
---|
| 235 | <configuration>
|
---|
| 236 | <!-- get all project dependencies -->
|
---|
| 237 | <descriptorRefs>
|
---|
| 238 | <descriptorRef>jar-with-dependencies</descriptorRef>
|
---|
| 239 | </descriptorRefs>
|
---|
| 240 | <archive>
|
---|
| 241 | <manifest>
|
---|
| 242 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
---|
| 243 | <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
---|
| 244 | <mainClass>geniusweb.exampleparties.anac2019.winkyagent.WinkyAgent</mainClass>
|
---|
| 245 | </manifest>
|
---|
| 246 | </archive>
|
---|
| 247 | </configuration>
|
---|
| 248 | <executions>
|
---|
| 249 | <execution>
|
---|
| 250 | <id>make-assembly</id>
|
---|
| 251 | <!-- bind to the packaging phase -->
|
---|
| 252 | <phase>package</phase>
|
---|
| 253 | <goals>
|
---|
| 254 | <goal>single</goal>
|
---|
| 255 | </goals>
|
---|
| 256 | </execution>
|
---|
| 257 | </executions>
|
---|
| 258 | </plugin>
|
---|
| 259 |
|
---|
| 260 |
|
---|
| 261 | </plugins>
|
---|
| 262 |
|
---|
| 263 | <pluginManagement>
|
---|
| 264 | <plugins>
|
---|
| 265 | <plugin>
|
---|
| 266 | <groupId>org.eclipse.m2e</groupId>
|
---|
| 267 | <artifactId>lifecycle-mapping</artifactId>
|
---|
| 268 | <version>1.0.0</version>
|
---|
| 269 | <configuration>
|
---|
| 270 | <lifecycleMappingMetadata>
|
---|
| 271 | <pluginExecutions>
|
---|
| 272 | <pluginExecution>
|
---|
| 273 | <pluginExecutionFilter>
|
---|
| 274 | <groupId>org.jfrog.buildinfo</groupId>
|
---|
| 275 | <artifactId>artifactory-maven-plugin</artifactId>
|
---|
| 276 | <versionRange>[1.0.0,)</versionRange>
|
---|
| 277 | <goals>
|
---|
| 278 | <goal>publish</goal>
|
---|
| 279 | </goals>
|
---|
| 280 | </pluginExecutionFilter>
|
---|
| 281 | <action>
|
---|
| 282 | <ignore />
|
---|
| 283 | </action>
|
---|
| 284 | </pluginExecution>
|
---|
| 285 | </pluginExecutions>
|
---|
| 286 | </lifecycleMappingMetadata>
|
---|
| 287 | </configuration>
|
---|
| 288 | </plugin>
|
---|
| 289 | </plugins>
|
---|
| 290 | </pluginManagement>
|
---|
| 291 |
|
---|
| 292 |
|
---|
| 293 | </build>
|
---|
| 294 | </project>
|
---|