source: annotations/pom.xml@ 1237

Last change on this file since 1237 was 1189, checked in by wouter, 4 weeks ago

#374 moving annotation to separate package

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