source: dialogmanager/pom.xml@ 301

Last change on this file since 301 was 124, checked in by wouter, 4 years ago

#64 fixed version numbers in the poms

File size: 6.5 KB
Line 
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>dialogmanager</artifactId>
8 <version>2.0.1</version>
9 <packaging>jar</packaging>
10
11 <name>dialogmanager</name>
12 <url>http://maven.apache.org</url>
13
14 <properties>
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16 <maven.compiler.target>1.8</maven.compiler.target>
17 <maven.compiler.source>1.8</maven.compiler.source>
18 <basedir>.</basedir>
19 <passwd>${env.ARTIFACTORY_PASS}</passwd>
20 <jackson-2-version>2.10.0</jackson-2-version>
21 </properties>
22
23 <distributionManagement>
24 <repository>
25 <id>artifactory.ewi.tudelft.nl</id>
26 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
27 </repository>
28 </distributionManagement>
29
30 <repositories>
31 <repository>
32 <id>artifactory.ewi.tudelft.nl</id>
33 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
34 <snapshots>
35 <enabled>false</enabled>
36 </snapshots>
37 </repository>
38 </repositories>
39
40 <pluginRepositories>
41 <pluginRepository>
42 <id>central</id>
43 <url>https://repo1.maven.org/</url>
44 </pluginRepository>
45 <pluginRepository>
46 <id>jfrog-plugins-release</id>
47 <name>plugins-release</name>
48 <url>https://oss.jfrog.org/artifactory/plugins-release</url>
49 </pluginRepository>
50 </pluginRepositories>
51
52 <dependencies>
53 <dependency>
54 <groupId>com.fasterxml.jackson.core</groupId>
55 <artifactId>jackson-core</artifactId>
56 <version>${jackson-2-version}</version>
57 </dependency>
58
59 <!-- Just the annotations; use this dependency if you want to attach annotations
60 to classes without connecting them to the code. -->
61 <dependency>
62 <groupId>com.fasterxml.jackson.core</groupId>
63 <artifactId>jackson-annotations</artifactId>
64 <version>${jackson-2-version}</version>
65 </dependency>
66
67 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
68 <dependency>
69 <groupId>com.fasterxml.jackson.core</groupId>
70 <artifactId>jackson-databind</artifactId>
71 <version>${jackson-2-version}</version>
72 </dependency>
73
74 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
75 <dependency>
76 <groupId>com.fasterxml.jackson.dataformat</groupId>
77 <artifactId>jackson-dataformat-smile</artifactId>
78 <version>${jackson-2-version}</version>
79 </dependency>
80 <!-- JAX-RS provider -->
81 <dependency>
82 <groupId>com.fasterxml.jackson.jaxrs</groupId>
83 <artifactId>jackson-jaxrs-json-provider</artifactId>
84 <version>${jackson-2-version}</version>
85 </dependency>
86 <!-- Support for JAX-B annotations as additional configuration -->
87 <dependency>
88 <groupId>com.fasterxml.jackson.module</groupId>
89 <artifactId>jackson-module-jaxb-annotations</artifactId>
90 <version>${jackson-2-version}</version>
91 </dependency>
92 <dependency>
93 <groupId>junit</groupId>
94 <artifactId>junit</artifactId>
95 <version>4.12</version>
96 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.mockito</groupId>
100 <artifactId>mockito-all</artifactId>
101 <version>1.9.5</version>
102 <scope>test</scope>
103 </dependency>
104
105
106 <dependency>
107 <groupId>tudelft.utilities</groupId>
108 <artifactId>junit</artifactId>
109 <version>1.0.5</version>
110 <scope>test</scope>
111 </dependency>
112 </dependencies>
113
114 <build>
115
116 <plugins>
117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-compiler-plugin</artifactId>
120 <version>3.8.0</version>
121 <configuration>
122 <source>1.8</source>
123 <target>1.8</target>
124 </configuration>
125 </plugin>
126
127 <plugin>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-source-plugin</artifactId>
130 <version>3.1.0</version>
131 <executions>
132 <execution>
133 <id>attach-sources</id>
134 <goals>
135 <goal>jar</goal>
136 </goals>
137 </execution>
138 </executions>
139 </plugin>
140
141 <plugin>
142 <groupId>org.apache.maven.plugins</groupId>
143 <artifactId>maven-javadoc-plugin</artifactId>
144 <version>2.10.1</version>
145 <executions>
146 <execution>
147 <id>attach-javadocs</id>
148 <goals>
149 <goal>jar</goal>
150 </goals>
151 <configuration>
152 <additionalparam>${javadoc.opts}</additionalparam>
153 <additionalparam>-Xdoclint:none</additionalparam>
154 </configuration>
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 </manifest>
195 </archive>
196 </configuration>
197 <executions>
198 <execution>
199 <id>make-assembly</id>
200 <!-- bind to the packaging phase -->
201 <phase>package</phase>
202 <goals>
203 <goal>single</goal>
204 </goals>
205 </execution>
206 </executions>
207 </plugin>
208
209
210 </plugins>
211
212 <pluginManagement>
213 <plugins>
214 <plugin>
215 <groupId>org.eclipse.m2e</groupId>
216 <artifactId>lifecycle-mapping</artifactId>
217 <version>1.0.0</version>
218 <configuration>
219 <lifecycleMappingMetadata>
220 <pluginExecutions>
221 <pluginExecution>
222 <pluginExecutionFilter>
223 <groupId>org.jfrog.buildinfo</groupId>
224 <artifactId>artifactory-maven-plugin</artifactId>
225 <versionRange>[1.0.0,)</versionRange>
226 <goals>
227 <goal>publish</goal>
228 </goals>
229 </pluginExecutionFilter>
230 <action>
231 <ignore />
232 </action>
233 </pluginExecution>
234 </pluginExecutions>
235 </lifecycleMappingMetadata>
236 </configuration>
237 </plugin>
238 </plugins>
239 </pluginManagement>
240
241
242 </build>
243
244
245</project>
Note: See TracBrowser for help on using the repository browser.