source: dialogmanager/pom.xml@ 26

Last change on this file since 26 was 26, checked in by wouter, 5 years ago

moving dialogmanager to utilities project for easy re-use

File size: 6.4 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>1.0.0</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>jcenter</id>
43 <url>http://jcenter.bintray.com</url>
44 </pluginRepository>
45 </pluginRepositories>
46
47 <dependencies>
48 <dependency>
49 <groupId>com.fasterxml.jackson.core</groupId>
50 <artifactId>jackson-core</artifactId>
51 <version>${jackson-2-version}</version>
52 </dependency>
53
54 <!-- Just the annotations; use this dependency if you want to attach annotations
55 to classes without connecting them to the code. -->
56 <dependency>
57 <groupId>com.fasterxml.jackson.core</groupId>
58 <artifactId>jackson-annotations</artifactId>
59 <version>${jackson-2-version}</version>
60 </dependency>
61
62 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
63 <dependency>
64 <groupId>com.fasterxml.jackson.core</groupId>
65 <artifactId>jackson-databind</artifactId>
66 <version>${jackson-2-version}</version>
67 </dependency>
68
69 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
70 <dependency>
71 <groupId>com.fasterxml.jackson.dataformat</groupId>
72 <artifactId>jackson-dataformat-smile</artifactId>
73 <version>${jackson-2-version}</version>
74 </dependency>
75 <!-- JAX-RS provider -->
76 <dependency>
77 <groupId>com.fasterxml.jackson.jaxrs</groupId>
78 <artifactId>jackson-jaxrs-json-provider</artifactId>
79 <version>${jackson-2-version}</version>
80 </dependency>
81 <!-- Support for JAX-B annotations as additional configuration -->
82 <dependency>
83 <groupId>com.fasterxml.jackson.module</groupId>
84 <artifactId>jackson-module-jaxb-annotations</artifactId>
85 <version>${jackson-2-version}</version>
86 </dependency>
87 <dependency>
88 <groupId>junit</groupId>
89 <artifactId>junit</artifactId>
90 <version>4.12</version>
91 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.mockito</groupId>
95 <artifactId>mockito-all</artifactId>
96 <version>1.9.5</version>
97 <scope>test</scope>
98 </dependency>
99
100
101 <dependency>
102 <groupId>tudelft.utilities</groupId>
103 <artifactId>junit</artifactId>
104 <version>1.0.2</version>
105 <scope>test</scope>
106 </dependency>
107 </dependencies>
108
109 <build>
110
111 <plugins>
112 <plugin>
113 <groupId>org.apache.maven.plugins</groupId>
114 <artifactId>maven-compiler-plugin</artifactId>
115 <version>3.8.0</version>
116 <configuration>
117 <source>1.8</source>
118 <target>1.8</target>
119 </configuration>
120 </plugin>
121
122 <plugin>
123 <groupId>org.apache.maven.plugins</groupId>
124 <artifactId>maven-source-plugin</artifactId>
125 <version>3.1.0</version>
126 <executions>
127 <execution>
128 <id>attach-sources</id>
129 <goals>
130 <goal>jar</goal>
131 </goals>
132 </execution>
133 </executions>
134 </plugin>
135
136 <plugin>
137 <groupId>org.apache.maven.plugins</groupId>
138 <artifactId>maven-javadoc-plugin</artifactId>
139 <version>2.10.1</version>
140 <executions>
141 <execution>
142 <id>attach-javadocs</id>
143 <goals>
144 <goal>jar</goal>
145 </goals>
146 <configuration>
147 <additionalparam>${javadoc.opts}</additionalparam>
148 <additionalparam>-Xdoclint:none</additionalparam>
149 </configuration>
150 </execution>
151 </executions>
152 </plugin>
153
154 <plugin>
155 <groupId>org.jfrog.buildinfo</groupId>
156 <artifactId>artifactory-maven-plugin</artifactId>
157 <version>2.6.1</version>
158 <executions>
159 <execution>
160 <id>build-info</id>
161 <goals>
162 <goal>publish</goal>
163 </goals>
164 <configuration>
165 <publisher>
166 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
167 <repoKey>libs-release</repoKey>
168 <username>wouter</username>
169 <password>${passwd}</password>
170 </publisher>
171 </configuration>
172 </execution>
173 </executions>
174 </plugin>
175
176 <plugin>
177 <groupId>org.apache.maven.plugins</groupId>
178 <artifactId>maven-assembly-plugin</artifactId>
179 <version>2.4.1</version>
180 <configuration>
181 <!-- get all project dependencies -->
182 <descriptorRefs>
183 <descriptorRef>jar-with-dependencies</descriptorRef>
184 </descriptorRefs>
185 <archive>
186 <manifest>
187 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
188 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
189 </manifest>
190 </archive>
191 </configuration>
192 <executions>
193 <execution>
194 <id>make-assembly</id>
195 <!-- bind to the packaging phase -->
196 <phase>package</phase>
197 <goals>
198 <goal>single</goal>
199 </goals>
200 </execution>
201 </executions>
202 </plugin>
203
204
205 </plugins>
206
207 <pluginManagement>
208 <plugins>
209 <plugin>
210 <groupId>org.eclipse.m2e</groupId>
211 <artifactId>lifecycle-mapping</artifactId>
212 <version>1.0.0</version>
213 <configuration>
214 <lifecycleMappingMetadata>
215 <pluginExecutions>
216 <pluginExecution>
217 <pluginExecutionFilter>
218 <groupId>org.jfrog.buildinfo</groupId>
219 <artifactId>artifactory-maven-plugin</artifactId>
220 <versionRange>[1.0.0,)</versionRange>
221 <goals>
222 <goal>publish</goal>
223 </goals>
224 </pluginExecutionFilter>
225 <action>
226 <ignore />
227 </action>
228 </pluginExecution>
229 </pluginExecutions>
230 </lifecycleMappingMetadata>
231 </configuration>
232 </plugin>
233 </plugins>
234 </pluginManagement>
235
236
237 </build>
238
239
240</project>
Note: See TracBrowser for help on using the repository browser.