source: accountmanager/pom.xml@ 71

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

#31 introduce NamePassword structure for easy parsing of login data

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