source: logging/pom.xml@ 945

Last change on this file since 945 was 945, checked in by wouter, 4 months ago

#303 added ReportTFile and test

File size: 5.0 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.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 <scope>test</scope>
27 </dependency>
28
29 <dependency>
30 <groupId>tudelft.utilities</groupId>
31 <artifactId>junit</artifactId>
32 <version>1.0.5</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.8.0</version>
78 <configuration>
79 <source>1.8</source>
80 <target>1.8</target>
81 </configuration>
82 </plugin>
83
84
85 <plugin>
86 <groupId>org.apache.maven.plugins</groupId>
87 <artifactId>maven-enforcer-plugin</artifactId>
88 <version>3.0.0-M2</version>
89 <executions>
90 <execution>
91 <id>enforce</id>
92 <configuration>
93 <rules>
94 <dependencyConvergence />
95 </rules>
96 </configuration>
97 <goals>
98 <goal>enforce</goal>
99 </goals>
100 </execution>
101 </executions>
102 </plugin>
103 <plugin>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-javadoc-plugin</artifactId>
106 <version>2.10.1</version>
107 <executions>
108 <execution>
109 <id>attach-javadocs</id>
110 <goals>
111 <goal>jar</goal>
112 </goals>
113 <configuration>
114 <additionalparam>${javadoc.opts}</additionalparam>
115 <additionalparam>-Xdoclint:none</additionalparam>
116 </configuration>
117 </execution>
118 </executions>
119 </plugin>
120
121 <plugin>
122 <groupId>org.jfrog.buildinfo</groupId>
123 <artifactId>artifactory-maven-plugin</artifactId>
124 <version>2.6.1</version>
125 <executions>
126 <execution>
127 <id>build-info</id>
128 <goals>
129 <goal>publish</goal>
130 </goals>
131 <configuration>
132 <publisher>
133 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
134 <repoKey>libs-release</repoKey>
135 <username>wouter</username>
136 <password>${passwd}</password>
137 </publisher>
138 </configuration>
139 </execution>
140 </executions>
141 </plugin>
142
143 <plugin>
144 <groupId>org.apache.maven.plugins</groupId>
145 <artifactId>maven-assembly-plugin</artifactId>
146 <version>2.4.1</version>
147 <configuration>
148 <!-- get all project dependencies -->
149 <descriptorRefs>
150 <descriptorRef>jar-with-dependencies</descriptorRef>
151 </descriptorRefs>
152 <archive>
153 <manifest>
154 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
155 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
156 </manifest>
157 </archive>
158 </configuration>
159 <executions>
160 <execution>
161 <id>make-assembly</id>
162 <!-- bind to the packaging phase -->
163 <phase>package</phase>
164 <goals>
165 <goal>single</goal>
166 </goals>
167 </execution>
168 </executions>
169 </plugin>
170
171
172 </plugins>
173
174 <pluginManagement>
175 <plugins>
176 <plugin>
177 <groupId>org.eclipse.m2e</groupId>
178 <artifactId>lifecycle-mapping</artifactId>
179 <version>1.0.0</version>
180 <configuration>
181 <lifecycleMappingMetadata>
182 <pluginExecutions>
183 <pluginExecution>
184 <pluginExecutionFilter>
185 <groupId>org.jfrog.buildinfo</groupId>
186 <artifactId>artifactory-maven-plugin</artifactId>
187 <versionRange>[1.0.0,)</versionRange>
188 <goals>
189 <goal>publish</goal>
190 </goals>
191 </pluginExecutionFilter>
192 <action>
193 <ignore />
194 </action>
195 </pluginExecution>
196 </pluginExecutions>
197 </lifecycleMappingMetadata>
198 </configuration>
199 </plugin>
200 </plugins>
201 </pluginManagement>
202
203
204 </build>
205
206</project>
Note: See TracBrowser for help on using the repository browser.