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