source: immutablelist/pom.xml@ 12

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

JoinedList add equals; more tests.

File size: 6.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>immutablelist</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 <jackson-2-version>2.9.6</jackson-2-version>
19 </properties>
20
21 <distributionManagement>
22 <repository>
23 <id>artifactory.ewi.tudelft.nl</id>
24 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
25 </repository>
26 </distributionManagement>
27
28
29 <dependencies>
30
31 <!-- the core, which includes Streaming API, shared low-level abstractions
32 (but NOT data-binding) -->
33 <dependency>
34 <groupId>com.fasterxml.jackson.core</groupId>
35 <artifactId>jackson-core</artifactId>
36 <version>${jackson-2-version}</version>
37 </dependency>
38
39 <!-- Just the annotations; use this dependency if you want to attach annotations
40 to classes without connecting them to the code. -->
41 <dependency>
42 <groupId>com.fasterxml.jackson.core</groupId>
43 <artifactId>jackson-annotations</artifactId>
44 <version>${jackson-2-version}</version>
45 </dependency>
46
47 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
48 <dependency>
49 <groupId>com.fasterxml.jackson.core</groupId>
50 <artifactId>jackson-databind</artifactId>
51 <version>${jackson-2-version}</version>
52 </dependency>
53
54 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
55 <dependency>
56 <groupId>com.fasterxml.jackson.dataformat</groupId>
57 <artifactId>jackson-dataformat-smile</artifactId>
58 <version>${jackson-2-version}</version>
59 </dependency>
60 <!-- JAX-RS provider -->
61 <dependency>
62 <groupId>com.fasterxml.jackson.jaxrs</groupId>
63 <artifactId>jackson-jaxrs-json-provider</artifactId>
64 <version>${jackson-2-version}</version>
65 </dependency>
66 <!-- Support for JAX-B annotations as additional configuration -->
67 <dependency>
68 <groupId>com.fasterxml.jackson.module</groupId>
69 <artifactId>jackson-module-jaxb-annotations</artifactId>
70 <version>${jackson-2-version}</version>
71 </dependency>
72
73 <dependency>
74 <groupId>junit</groupId>
75 <artifactId>junit</artifactId>
76 <scope>test</scope>
77 <version>4.12</version>
78 </dependency>
79 <dependency>
80 <groupId>tudelft.utilities</groupId>
81 <artifactId>junit</artifactId>
82 <version>1.0.2</version>
83 <scope>test</scope>
84 </dependency>
85
86 </dependencies>
87
88 <repositories>
89 <repository>
90 <id>artifactory.ewi.tudelft.nl</id>
91 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
92 <snapshots>
93 <enabled>false</enabled>
94 </snapshots>
95 </repository>
96
97 </repositories>
98
99 <pluginRepositories>
100 <pluginRepository>
101 <id>jcenter</id>
102 <url>http://jcenter.bintray.com</url>
103 </pluginRepository>
104 </pluginRepositories>
105
106
107 <build>
108
109 <plugins>
110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-compiler-plugin</artifactId>
113 <version>3.6.1</version>
114 <configuration>
115 <source>1.8</source>
116 <target>1.8</target>
117 </configuration>
118 </plugin>
119
120 <plugin>
121 <groupId>org.apache.maven.plugins</groupId>
122 <artifactId>maven-javadoc-plugin</artifactId>
123 <version>2.10.1</version>
124 <executions>
125 <execution>
126 <id>attach-javadocs</id>
127 <goals>
128 <goal>jar</goal>
129 </goals>
130 <configuration>
131 <additionalparam>${javadoc.opts}</additionalparam>
132 <additionalparam>-Xdoclint:none</additionalparam>
133 </configuration>
134 </execution>
135 </executions>
136 </plugin>
137
138 <plugin>
139 <groupId>org.jfrog.buildinfo</groupId>
140 <artifactId>artifactory-maven-plugin</artifactId>
141 <version>2.6.1</version>
142 <executions>
143 <execution>
144 <id>build-info</id>
145 <goals>
146 <goal>publish</goal>
147 </goals>
148 <configuration>
149 <publisher>
150 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
151 <repoKey>libs-release</repoKey>
152 <username>wouter</username>
153 <password>${passwd}</password>
154 </publisher>
155 </configuration>
156 </execution>
157 </executions>
158 </plugin>
159
160 <plugin>
161 <groupId>org.apache.maven.plugins</groupId>
162 <artifactId>maven-assembly-plugin</artifactId>
163 <version>2.4.1</version>
164 <configuration>
165 <!-- get all project dependencies -->
166 <descriptorRefs>
167 <descriptorRef>jar-with-dependencies</descriptorRef>
168 </descriptorRefs>
169 <archive>
170 <manifest>
171 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
172 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
173 </manifest>
174 </archive>
175 </configuration>
176 <executions>
177 <execution>
178 <id>make-assembly</id>
179 <!-- bind to the packaging phase -->
180 <phase>package</phase>
181 <goals>
182 <goal>single</goal>
183 </goals>
184 </execution>
185 </executions>
186 </plugin>
187
188
189 </plugins>
190
191 <pluginManagement>
192 <plugins>
193 <plugin>
194 <groupId>org.eclipse.m2e</groupId>
195 <artifactId>lifecycle-mapping</artifactId>
196 <version>1.0.0</version>
197 <configuration>
198 <lifecycleMappingMetadata>
199 <pluginExecutions>
200 <pluginExecution>
201 <pluginExecutionFilter>
202 <groupId>org.jfrog.buildinfo</groupId>
203 <artifactId>artifactory-maven-plugin</artifactId>
204 <versionRange>[1.0.0,)</versionRange>
205 <goals>
206 <goal>publish</goal>
207 </goals>
208 </pluginExecutionFilter>
209 <action>
210 <ignore />
211 </action>
212 </pluginExecution>
213 </pluginExecutions>
214 </lifecycleMappingMetadata>
215 </configuration>
216 </plugin>
217 </plugins>
218 </pluginManagement>
219
220
221 </build>
222</project>
Note: See TracBrowser for help on using the repository browser.