source: dialogmanager/pom.xml@ 1176

Last change on this file since 1176 was 613, checked in by wouter, 13 months ago

#110 See MentalHealth. dialogmanager added if-then-else

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