source: listener/pom.xml@ 20

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

#1734 fixed dependency conflicts

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