source: repository/pom.xml@ 1

Last change on this file since 1 was 1, checked in by bart, 5 years ago

history verwijderd

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