source: autotranslator/pom.xml@ 98

Last change on this file since 98 was 98, checked in by Wouter Pasman, 20 months ago

ignore generated

File size: 6.3 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>geniusweb</groupId>
7 <artifactId>python-autotranslator</artifactId>
8 <version>2.1.6</version>
9 <packaging>jar</packaging>
10
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 <passwd>${env.ARTIFACTORY_PASS}</passwd>
18 <jackson-2-version>2.12.3</jackson-2-version>
19 <j2p.version>1.0.0</j2p.version>
20 <geniusweb.version>${project.version}</geniusweb.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
31 <dependencies>
32 <dependency>
33 <groupId>geniusweb</groupId>
34 <artifactId>issuevalue</artifactId>
35 <version>${geniusweb.version}</version>
36 </dependency>
37
38
39 <dependency>
40 <groupId>tudelft.utilities.j2p</groupId>
41 <artifactId>core</artifactId>
42 <version>${j2p.version}</version>
43 </dependency>
44 <dependency>
45 <groupId>tudelft.utilities.j2p</groupId>
46 <artifactId>jackson-t</artifactId>
47 <version>${j2p.version}</version>
48 </dependency>
49
50 <dependency>
51 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
53 <version>4.12</version>
54 <scope>test</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.mockito</groupId>
58 <artifactId>mockito-core</artifactId>
59 <version>3.11.2</version>
60 <scope>test</scope>
61 </dependency>
62
63 </dependencies>
64
65
66 <repositories>
67 <repository>
68 <id>artifactory.ewi.tudelft.nl</id>
69 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
70 <snapshots>
71 <enabled>false</enabled>
72 </snapshots>
73 </repository>
74 </repositories>
75
76 <pluginRepositories>
77 <pluginRepository>
78 <id>central</id>
79 <url>https://repo1.maven.org/maven2</url>
80 </pluginRepository>
81 <pluginRepository>
82 <id>artifactory.ewi.tudelft.nl</id>
83 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
84 </pluginRepository>
85 </pluginRepositories>
86
87
88
89 <build>
90
91 <plugins>
92 <plugin>
93 <groupId>org.apache.maven.plugins</groupId>
94 <artifactId>maven-dependency-plugin</artifactId>
95 <executions>
96 <execution>
97 <id>unpack</id>
98 <phase>validate</phase>
99 <goals>
100 <goal>unpack</goal>
101 </goals>
102 <configuration>
103 <artifactItems>
104 <artifactItem>
105 <groupId>geniusweb</groupId>
106 <artifactId>issuevalue</artifactId>
107 <version>${geniusweb.version}</version>
108 <type>jar</type>
109 <outputDirectory>downloads</outputDirectory>
110 </artifactItem>
111 </artifactItems>
112 </configuration>
113 </execution>
114 </executions>
115 </plugin>
116
117
118 <plugin>
119 <groupId>org.apache.maven.plugins</groupId>
120 <artifactId>maven-compiler-plugin</artifactId>
121 <version>3.8.0</version>
122 <configuration>
123 <source>1.8</source>
124 <target>1.8</target>
125 </configuration>
126 </plugin>
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-jar-plugin</artifactId>
144 <configuration>
145 <archive>
146 <manifest>
147 <mainClass>geniusweb.boa.BoaParty</mainClass>
148 </manifest>
149 </archive>
150 </configuration>
151 </plugin>
152
153<!-- <plugin> -->
154<!-- <groupId>org.apache.maven.plugins</groupId> -->
155<!-- <artifactId>maven-javadoc-plugin</artifactId> -->
156<!-- <version>3.2.0</version> -->
157<!-- <executions> -->
158<!-- <execution> -->
159<!-- <id>attach-javadocs</id> -->
160<!-- <goals> -->
161<!-- <goal>jar</goal> -->
162<!-- </goals> -->
163<!-- </execution> -->
164<!-- </executions> -->
165<!-- </plugin> -->
166
167 <plugin>
168 <groupId>org.jfrog.buildinfo</groupId>
169 <artifactId>artifactory-maven-plugin</artifactId>
170 <version>3.2.3</version>
171 <executions>
172 <execution>
173 <id>build-info</id>
174 <goals>
175 <goal>publish</goal>
176 </goals>
177 <configuration>
178 <publisher>
179 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
180 <repoKey>libs-release</repoKey>
181 <username>wouter</username>
182 <password>${passwd}</password>
183 </publisher>
184 </configuration>
185 </execution>
186 </executions>
187 </plugin>
188
189 <plugin>
190 <groupId>org.apache.maven.plugins</groupId>
191 <artifactId>maven-assembly-plugin</artifactId>
192 <version>2.4.1</version>
193 <configuration>
194 <!-- get all project dependencies -->
195 <descriptorRefs>
196 <descriptorRef>jar-with-dependencies</descriptorRef>
197 </descriptorRefs>
198 <archive>
199 <manifest>
200 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
201 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
202 <mainClass>geniusweb.boa.BoaParty</mainClass>
203 </manifest>
204 </archive>
205 </configuration>
206 <executions>
207 <execution>
208 <id>make-assembly</id>
209 <!-- bind to the packaging phase -->
210 <phase>package</phase>
211 <goals>
212 <goal>single</goal>
213 </goals>
214 </execution>
215 </executions>
216 </plugin>
217
218
219 </plugins>
220
221 <pluginManagement>
222 <plugins>
223 <plugin>
224 <groupId>org.eclipse.m2e</groupId>
225 <artifactId>lifecycle-mapping</artifactId>
226 <version>1.0.0</version>
227 <configuration>
228 <lifecycleMappingMetadata>
229 <pluginExecutions>
230 <pluginExecution>
231 <pluginExecutionFilter>
232 <groupId>org.jfrog.buildinfo</groupId>
233 <artifactId>artifactory-maven-plugin</artifactId>
234 <versionRange>[1.0.0,)</versionRange>
235 <goals>
236 <goal>publish</goal>
237 </goals>
238 </pluginExecutionFilter>
239 <action>
240 <ignore />
241 </action>
242 </pluginExecution>
243 </pluginExecutions>
244 </lifecycleMappingMetadata>
245 </configuration>
246 </plugin>
247 </plugins>
248 </pluginManagement>
249
250
251 </build>
252</project>
Note: See TracBrowser for help on using the repository browser.