source: logging/pom.xml@ 116

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

bump versions to 1.1.1 and add enforcer plugin

File size: 4.8 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>logging</artifactId>
8 <version>1.0.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 <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>jcenter</id>
61 <url>http://jcenter.bintray.com</url>
62 </pluginRepository>
63 </pluginRepositories>
64
65
66 <build>
67
68 <plugins>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-compiler-plugin</artifactId>
72 <version>3.6.1</version>
73 <configuration>
74 <source>1.8</source>
75 <target>1.8</target>
76 </configuration>
77 </plugin>
78
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-enforcer-plugin</artifactId>
82 <version>3.0.0-M2</version>
83 <executions>
84 <execution>
85 <id>enforce</id>
86 <configuration>
87 <rules>
88 <dependencyConvergence />
89 </rules>
90 </configuration>
91 <goals>
92 <goal>enforce</goal>
93 </goals>
94 </execution>
95 </executions>
96 </plugin>
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.jfrog.buildinfo</groupId>
117 <artifactId>artifactory-maven-plugin</artifactId>
118 <version>2.6.1</version>
119 <executions>
120 <execution>
121 <id>build-info</id>
122 <goals>
123 <goal>publish</goal>
124 </goals>
125 <configuration>
126 <publisher>
127 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
128 <repoKey>libs-release</repoKey>
129 <username>wouter</username>
130 <password>${passwd}</password>
131 </publisher>
132 </configuration>
133 </execution>
134 </executions>
135 </plugin>
136
137 <plugin>
138 <groupId>org.apache.maven.plugins</groupId>
139 <artifactId>maven-assembly-plugin</artifactId>
140 <version>2.4.1</version>
141 <configuration>
142 <!-- get all project dependencies -->
143 <descriptorRefs>
144 <descriptorRef>jar-with-dependencies</descriptorRef>
145 </descriptorRefs>
146 <archive>
147 <manifest>
148 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
149 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
150 </manifest>
151 </archive>
152 </configuration>
153 <executions>
154 <execution>
155 <id>make-assembly</id>
156 <!-- bind to the packaging phase -->
157 <phase>package</phase>
158 <goals>
159 <goal>single</goal>
160 </goals>
161 </execution>
162 </executions>
163 </plugin>
164
165
166 </plugins>
167
168 <pluginManagement>
169 <plugins>
170 <plugin>
171 <groupId>org.eclipse.m2e</groupId>
172 <artifactId>lifecycle-mapping</artifactId>
173 <version>1.0.0</version>
174 <configuration>
175 <lifecycleMappingMetadata>
176 <pluginExecutions>
177 <pluginExecution>
178 <pluginExecutionFilter>
179 <groupId>org.jfrog.buildinfo</groupId>
180 <artifactId>artifactory-maven-plugin</artifactId>
181 <versionRange>[1.0.0,)</versionRange>
182 <goals>
183 <goal>publish</goal>
184 </goals>
185 </pluginExecutionFilter>
186 <action>
187 <ignore />
188 </action>
189 </pluginExecution>
190 </pluginExecutions>
191 </lifecycleMappingMetadata>
192 </configuration>
193 </plugin>
194 </plugins>
195 </pluginManagement>
196
197
198 </build>
199
200</project>
Note: See TracBrowser for help on using the repository browser.