source: anac2020/NiceAgent/pom.xml@ 11

Last change on this file since 11 was 1, checked in by wouter, 4 years ago

#1910 added anac2020 parties

File size: 9.0 KB
RevLine 
[1]1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <groupId>geniusweb.sampleagent</groupId>
8 <!-- TODO Update below if you change your project name!! -->
9 <artifactId>NiceAgent</artifactId>
10 <version>1.4.2</version>
11 <packaging>jar</packaging>
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 <jackson-2-version>2.9.6</jackson-2-version>
18 <!-- TODO Update below if you change your agent name!! -->
19 <main-class-path>negotiator.NiceAgent.NiceAgent</main-class-path>
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 <dependencies>
30 <dependency>
31 <groupId>geniusweb</groupId>
32 <artifactId>party</artifactId>
33 <version>1.4.2</version>
34 </dependency>
35 <dependency>
36 <groupId>geniusweb</groupId>
37 <artifactId>bidspace</artifactId>
38 <version>1.4.2</version>
39 </dependency>
40 <dependency>
41 <groupId>geniusweb</groupId>
42 <artifactId>profileconnection</artifactId>
43 <version>1.4.2</version>
44 </dependency>
45 <dependency>
46 <groupId>tudelft.utilities</groupId>
47 <artifactId>logging</artifactId>
48 <version>1.0.0</version>
49 </dependency>
50 <dependency>
51 <groupId>tudelft.utilities</groupId>
52 <artifactId>immutablelist</artifactId>
53 <version>1.0.1</version>
54 </dependency>
55 <!-- the core, which includes Streaming API, shared low-level abstractions (but NOT data-binding) -->
56 <dependency>
57 <groupId>com.fasterxml.jackson.core</groupId>
58 <artifactId>jackson-core</artifactId>
59 <version>${jackson-2-version}</version>
60 <scope>test</scope>
61 </dependency>
62 <!-- Just the annotations; use this dependency if you want to attach annotations to classes without connecting them to the code. -->
63 <dependency>
64 <groupId>com.fasterxml.jackson.core</groupId>
65 <artifactId>jackson-annotations</artifactId>
66 <version>${jackson-2-version}</version>
67 <scope>test</scope>
68 </dependency>
69 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
70 <dependency>
71 <groupId>com.fasterxml.jackson.core</groupId>
72 <artifactId>jackson-databind</artifactId>
73 <version>${jackson-2-version}</version>
74 <scope>test</scope>
75 </dependency>
76 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
77 <dependency>
78 <groupId>com.fasterxml.jackson.dataformat</groupId>
79 <artifactId>jackson-dataformat-smile</artifactId>
80 <version>${jackson-2-version}</version>
81 <scope>test</scope>
82 </dependency>
83 <!-- JAX-RS provider -->
84 <dependency>
85 <groupId>com.fasterxml.jackson.jaxrs</groupId>
86 <artifactId>jackson-jaxrs-json-provider</artifactId>
87 <version>${jackson-2-version}</version>
88 <scope>test</scope>
89 </dependency>
90 <!-- Support for JAX-B annotations as additional configuration -->
91 <dependency>
92 <groupId>com.fasterxml.jackson.module</groupId>
93 <artifactId>jackson-module-jaxb-annotations</artifactId>
94 <version>${jackson-2-version}</version>
95 <scope>test</scope>
96 </dependency>
97 <dependency>
98 <groupId>junit</groupId>
99 <artifactId>junit</artifactId>
100 <version>4.12</version>
101 <scope>test</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.mockito</groupId>
105 <artifactId>mockito-all</artifactId>
106 <version>1.9.5</version>
107 <scope>test</scope>
108 </dependency>
109 <dependency>
110 <groupId>tudelft.utilities</groupId>
111 <artifactId>junit</artifactId>
112 <version>1.0.1</version>
113 <scope>test</scope>
114 </dependency>
115 </dependencies>
116 <repositories>
117 <repository>
118 <id>artifactory.ewi.tudelft.nl</id>
119 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
120 <snapshots>
121 <enabled>false</enabled>
122 </snapshots>
123 </repository>
124 </repositories>
125 <pluginRepositories>
126 <pluginRepository>
127 <id>jcenter</id>
128 <url>https://jcenter.bintray.com</url>
129 </pluginRepository>
130 </pluginRepositories>
131 <build>
132 <plugins>
133 <plugin>
134 <groupId>org.apache.maven.plugins</groupId>
135 <artifactId>maven-compiler-plugin</artifactId>
136 <version>3.8.0</version>
137 <configuration>
138 <source>1.8</source>
139 <target>1.8</target>
140 </configuration>
141 </plugin>
142 <plugin>
143 <groupId>org.apache.maven.plugins</groupId>
144 <artifactId>maven-source-plugin</artifactId>
145 <version>3.1.0</version>
146 <executions>
147 <execution>
148 <id>attach-sources</id>
149 <goals>
150 <goal>jar</goal>
151 </goals>
152 </execution>
153 </executions>
154 </plugin>
155 <plugin>
156 <groupId>org.apache.maven.plugins</groupId>
157 <artifactId>maven-jar-plugin</artifactId>
158 <version>3.2.0</version>
159 <configuration>
160 <archive>
161 <manifest>
162 <mainClass>${main-class-path}</mainClass>
163 </manifest>
164 </archive>
165 </configuration>
166 </plugin>
167 <plugin>
168 <groupId>org.apache.maven.plugins</groupId>
169 <artifactId>maven-assembly-plugin</artifactId>
170 <version>2.4.1</version>
171 <configuration>
172 <!-- get all project dependencies -->
173 <descriptorRefs>
174 <descriptorRef>jar-with-dependencies</descriptorRef>
175 </descriptorRefs>
176 <archive>
177 <manifest>
178 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
179 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
180 <mainClass>${main-class-path}</mainClass>
181 </manifest>
182 </archive>
183 </configuration>
184 <executions>
185 <execution>
186 <id>make-assembly</id>
187 <!-- bind to the packaging phase -->
188 <phase>package</phase>
189 <goals>
190 <goal>single</goal>
191 </goals>
192 </execution>
193 </executions>
194 </plugin>
195 </plugins>
196 <pluginManagement>
197 <plugins>
198 <plugin>
199 <groupId>org.eclipse.m2e</groupId>
200 <artifactId>lifecycle-mapping</artifactId>
201 <version>1.0.0</version>
202 <configuration>
203 <lifecycleMappingMetadata>
204 <pluginExecutions>
205 <pluginExecution>
206 <pluginExecutionFilter>
207 <groupId>org.jfrog.buildinfo</groupId>
208 <artifactId>artifactory-maven-plugin</artifactId>
209 <versionRange>[1.0.0,)</versionRange>
210 <goals>
211 <goal>publish</goal>
212 </goals>
213 </pluginExecutionFilter>
214 <action>
215 <ignore />
216 </action>
217 </pluginExecution>
218 </pluginExecutions>
219 </lifecycleMappingMetadata>
220 </configuration>
221 </plugin>
222 </plugins>
223 </pluginManagement>
224 </build>
225</project>
Note: See TracBrowser for help on using the repository browser.