source: listener/pom.xml@ 122

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

#54 remove jcenter dependency, bump all versions

File size: 5.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>tudelft.utilities</groupId>
7 <artifactId>listener</artifactId>
8 <version>1.1.1</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 </properties>
19
20
21 <dependencies>
22 <dependency>
23 <groupId>junit</groupId>
24 <artifactId>junit</artifactId>
25 <version>4.12</version>
26 <scope>test</scope>
27 </dependency>
28
29 <dependency>
30 <groupId>tudelft.utilities</groupId>
31 <artifactId>junit</artifactId>
32 <version>1.0.2</version>
33 <scope>test</scope>
34 </dependency>
35 </dependencies>
36
37
38
39 <distributionManagement>
40 <repository>
41 <id>artifactory.ewi.tudelft.nl</id>
42 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
43 </repository>
44 </distributionManagement>
45
46
47 <repositories>
48 <repository>
49 <id>artifactory.ewi.tudelft.nl</id>
50 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
51 <snapshots>
52 <enabled>false</enabled>
53 </snapshots>
54 </repository>
55
56 </repositories>
57
58 <pluginRepositories>
59 <pluginRepository>
60 <id>central</id>
61 <url>https://repo1.maven.org/</url>
62 </pluginRepository>
63 <pluginRepository>
64 <id>jfrog-plugins-release</id>
65 <name>plugins-release</name>
66 <url>https://oss.jfrog.org/artifactory/plugins-release</url>
67 </pluginRepository>
68 </pluginRepositories>
69
70
71 <build>
72
73 <plugins>
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-compiler-plugin</artifactId>
77 <version>3.6.1</version>
78 <configuration>
79 <source>1.8</source>
80 <target>1.8</target>
81 </configuration>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-source-plugin</artifactId>
86 <version>3.1.0</version>
87 <executions>
88 <execution>
89 <id>attach-sources</id>
90 <goals>
91 <goal>jar</goal>
92 </goals>
93 </execution>
94 </executions>
95 </plugin>
96
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-javadoc-plugin</artifactId>
100 <version>2.10.1</version>
101 <executions>
102 <execution>
103 <id>attach-javadocs</id>
104 <goals>
105 <goal>jar</goal>
106 </goals>
107 <configuration>
108 <additionalparam>${javadoc.opts}</additionalparam>
109 <additionalparam>-Xdoclint:none</additionalparam>
110 </configuration>
111 </execution>
112 </executions>
113 </plugin>
114
115 <plugin>
116 <groupId>org.apache.maven.plugins</groupId>
117 <artifactId>maven-enforcer-plugin</artifactId>
118 <version>3.0.0-M2</version>
119 <executions>
120 <execution>
121 <id>enforce</id>
122 <configuration>
123 <rules>
124 <dependencyConvergence />
125 </rules>
126 </configuration>
127 <goals>
128 <goal>enforce</goal>
129 </goals>
130 </execution>
131 </executions>
132 </plugin>
133 <plugin>
134 <groupId>org.jfrog.buildinfo</groupId>
135 <artifactId>artifactory-maven-plugin</artifactId>
136 <version>2.6.1</version>
137 <executions>
138 <execution>
139 <id>build-info</id>
140 <goals>
141 <goal>publish</goal>
142 </goals>
143 <configuration>
144 <publisher>
145 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
146 <repoKey>libs-release</repoKey>
147 <username>wouter</username>
148 <password>${passwd}</password>
149 </publisher>
150 </configuration>
151 </execution>
152 </executions>
153 </plugin>
154
155 <plugin>
156 <groupId>org.apache.maven.plugins</groupId>
157 <artifactId>maven-assembly-plugin</artifactId>
158 <version>2.4.1</version>
159 <configuration>
160 <!-- get all project dependencies -->
161 <descriptorRefs>
162 <descriptorRef>jar-with-dependencies</descriptorRef>
163 </descriptorRefs>
164 <archive>
165 <manifest>
166 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
167 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
168 </manifest>
169 </archive>
170 </configuration>
171 <executions>
172 <execution>
173 <id>make-assembly</id>
174 <!-- bind to the packaging phase -->
175 <phase>package</phase>
176 <goals>
177 <goal>single</goal>
178 </goals>
179 </execution>
180 </executions>
181 </plugin>
182
183
184 </plugins>
185
186 <pluginManagement>
187 <plugins>
188 <plugin>
189 <groupId>org.eclipse.m2e</groupId>
190 <artifactId>lifecycle-mapping</artifactId>
191 <version>1.0.0</version>
192 <configuration>
193 <lifecycleMappingMetadata>
194 <pluginExecutions>
195 <pluginExecution>
196 <pluginExecutionFilter>
197 <groupId>org.jfrog.buildinfo</groupId>
198 <artifactId>artifactory-maven-plugin</artifactId>
199 <versionRange>[1.0.0,)</versionRange>
200 <goals>
201 <goal>publish</goal>
202 </goals>
203 </pluginExecutionFilter>
204 <action>
205 <ignore />
206 </action>
207 </pluginExecution>
208 </pluginExecutions>
209 </lifecycleMappingMetadata>
210 </configuration>
211 </plugin>
212 </plugins>
213 </pluginManagement>
214
215
216 </build>
217
218</project>
Note: See TracBrowser for help on using the repository browser.