source: immutablelist/pom.xml@ 6

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

#12 change Range serialization to contain numbers instead of strings

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