source: logconverter/pom.xml@ 52

Last change on this file since 52 was 52, checked in by ruud, 14 months ago

Fixed small issues in domaineditor.

File size: 5.6 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>geniusweb</groupId>
7 <artifactId>logconverter</artifactId>
8 <version>2.1.6</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.12.3</jackson-2-version>
19 <geniusweb.version>${project.version}</geniusweb.version>
20 </properties>
21
22 <distributionManagement>
23 <repository>
24 <id>artifactory.ewi.tudelft.nl</id>
25 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
26 </repository>
27 </distributionManagement>
28
29
30 <dependencies>
31 <dependency>
32 <groupId>geniusweb</groupId>
33 <artifactId>protocol</artifactId>
34 <version>${geniusweb.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>geniusweb</groupId>
38 <artifactId>profile</artifactId>
39 <version>${geniusweb.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>geniusweb</groupId>
43 <artifactId>profileconnection</artifactId>
44 <version>${geniusweb.version}</version>
45 </dependency>
46
47 <dependency>
48 <groupId>org.glassfish.tyrus.bundles</groupId>
49 <artifactId>tyrus-standalone-client</artifactId>
50 <version>1.18</version>
51 </dependency>
52 <dependency>
53 <groupId>commons-cli</groupId>
54 <artifactId>commons-cli</artifactId>
55 <version>1.5.0</version>
56 </dependency>
57
58
59 <dependency>
60 <groupId>junit</groupId>
61 <artifactId>junit</artifactId>
62 <version>4.12</version>
63 <scope>test</scope>
64 </dependency>
65 <dependency>
66 <groupId>tudelft.utilities</groupId>
67 <artifactId>junit</artifactId>
68 <version>1.0.5</version>
69 <scope>test</scope>
70 </dependency>
71
72
73 </dependencies>
74
75
76 <repositories>
77 <repository>
78 <id>artifactory.ewi.tudelft.nl</id>
79 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
80 <snapshots>
81 <enabled>false</enabled>
82 </snapshots>
83 </repository>
84 </repositories>
85
86 <pluginRepositories>
87 <pluginRepository>
88 <id>central</id>
89 <url>https://repo1.maven.org/maven2</url>
90 </pluginRepository>
91 <pluginRepository>
92 <id>artifactory.ewi.tudelft.nl</id>
93 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
94 </pluginRepository>
95 </pluginRepositories>
96
97 <build>
98 <plugins>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-compiler-plugin</artifactId>
102 <version>3.8.0</version>
103 <configuration>
104 <source>1.8</source>
105 <target>1.8</target>
106 </configuration>
107 </plugin>
108
109 <plugin>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-source-plugin</artifactId>
112 <version>3.1.0</version>
113 <executions>
114 <execution>
115 <id>attach-sources</id>
116 <goals>
117 <goal>jar</goal>
118 </goals>
119 </execution>
120 </executions>
121 </plugin>
122
123 <!-- The javadoc is disabled because this basically is a clone of 3rd
124 party code that has no proper documentation. <plugin> <groupId>org.apache.maven.plugins</groupId>
125 <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <executions>
126 <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution>
127 </executions> </plugin> -->
128 <plugin>
129 <groupId>org.jfrog.buildinfo</groupId>
130 <artifactId>artifactory-maven-plugin</artifactId>
131 <version>3.2.3</version>
132 <executions>
133 <execution>
134 <id>build-info</id>
135 <goals>
136 <goal>publish</goal>
137 </goals>
138 <configuration>
139 <publisher>
140 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
141 <repoKey>libs-release</repoKey>
142 <username>wouter</username>
143 <password>${passwd}</password>
144 </publisher>
145 </configuration>
146 </execution>
147 </executions>
148 </plugin>
149
150 <plugin>
151 <groupId>org.apache.maven.plugins</groupId>
152 <artifactId>maven-assembly-plugin</artifactId>
153 <version>2.4.1</version>
154 <configuration>
155 <!-- get all project dependencies -->
156 <descriptorRefs>
157 <descriptorRef>jar-with-dependencies</descriptorRef>
158 </descriptorRefs>
159 <archive>
160 <manifest>
161 <mainClass>geniusweb.logconverter.Convert</mainClass>
162 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
163 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
164 </manifest>
165 </archive>
166 </configuration>
167 <executions>
168 <execution>
169 <id>make-assembly</id>
170 <!-- bind to the packaging phase -->
171 <phase>package</phase>
172 <goals>
173 <goal>single</goal>
174 </goals>
175 </execution>
176 </executions>
177 </plugin>
178
179
180 </plugins>
181
182 <pluginManagement>
183 <plugins>
184 <plugin>
185 <groupId>org.eclipse.m2e</groupId>
186 <artifactId>lifecycle-mapping</artifactId>
187 <version>1.0.0</version>
188 <configuration>
189 <lifecycleMappingMetadata>
190 <pluginExecutions>
191 <pluginExecution>
192 <pluginExecutionFilter>
193 <groupId>org.jfrog.buildinfo</groupId>
194 <artifactId>artifactory-maven-plugin</artifactId>
195 <versionRange>[1.0.0,)</versionRange>
196 <goals>
197 <goal>publish</goal>
198 </goals>
199 </pluginExecutionFilter>
200 <action>
201 <ignore />
202 </action>
203 </pluginExecution>
204 </pluginExecutions>
205 </lifecycleMappingMetadata>
206 </configuration>
207 </plugin>
208 </plugins>
209 </pluginManagement>
210
211
212 </build>
213</project>
Note: See TracBrowser for help on using the repository browser.