source: javavenv/pom.xml@ 2

Last change on this file since 2 was 2, checked in by bart, 3 years ago

Added SAOP and simplerunner to GeniusWebPython. Several minor fixes.

File size: 4.4 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <groupId>geniusweb</groupId>
6 <artifactId>javavenv</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-2-version>2.12.3</jackson-2-version>
17 <!-- <tomcat.version>8.0.53</tomcat.version> -->
18 <tomcat.version>8.5.20</tomcat.version>
19 <geniusweb.version>2.0.1</geniusweb.version>
20 </properties>
21
22 <distributionManagement>
23 <repository>
24 <id>artifactory.ewi.tudelft.nl</id>
25 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
26 </repository>
27 </distributionManagement>
28
29
30 <repositories>
31 <repository>
32 <id>artifactory.ewi.tudelft.nl</id>
33 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
34 <snapshots>
35 <enabled>false</enabled>
36 </snapshots>
37 </repository>
38 </repositories>
39
40 <pluginRepositories>
41 <pluginRepository>
42 <id>central</id>
43 <url>https://repo1.maven.org/maven2</url>
44 </pluginRepository>
45 </pluginRepositories>
46
47 <dependencies>
48 <dependency>
49 <groupId>geniusweb</groupId>
50 <artifactId>party</artifactId>
51 <version>${geniusweb.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>commons-io</groupId>
55 <artifactId>commons-io</artifactId>
56 <version>2.8.0</version>
57 </dependency>
58 <dependency>
59 <groupId>junit</groupId>
60 <artifactId>junit</artifactId>
61 <version>4.12</version>
62 <scope>test</scope>
63 </dependency>
64
65 </dependencies>
66
67 <build>
68 <plugins>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-compiler-plugin</artifactId>
72 <version>3.8.0</version>
73 <configuration>
74 <source>1.8</source>
75 <target>1.8</target>
76 </configuration>
77 </plugin>
78
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-enforcer-plugin</artifactId>
82 <version>3.0.0-M2</version>
83 <executions>
84 <execution>
85 <id>enforce</id>
86 <configuration>
87 <rules>
88 <dependencyConvergence />
89 </rules>
90 </configuration>
91 <goals>
92 <goal>enforce</goal>
93 </goals>
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.apache.maven.plugins</groupId>
114 <artifactId>maven-javadoc-plugin</artifactId>
115 <version>3.2.0</version>
116 <executions>
117 <execution>
118 <id>attach-javadocs</id>
119 <goals>
120 <goal>jar</goal>
121 </goals>
122 </execution>
123 </executions>
124 </plugin>
125
126 <plugin>
127 <groupId>org.jfrog.buildinfo</groupId>
128 <artifactId>artifactory-maven-plugin</artifactId>
129 <version>3.2.3</version>
130 <executions>
131 <execution>
132 <id>build-info</id>
133 <goals>
134 <goal>publish</goal>
135 </goals>
136 <configuration>
137 <publisher>
138 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
139 <repoKey>libs-release</repoKey>
140 <username>wouter</username>
141 <password>${passwd}</password>
142 </publisher>
143 </configuration>
144 </execution>
145 </executions>
146 </plugin>
147
148
149 </plugins>
150
151 <pluginManagement>
152 <plugins>
153 <plugin>
154 <groupId>org.eclipse.m2e</groupId>
155 <artifactId>lifecycle-mapping</artifactId>
156 <version>1.0.0</version>
157 <configuration>
158 <lifecycleMappingMetadata>
159 <pluginExecutions>
160 <pluginExecution>
161 <pluginExecutionFilter>
162 <groupId>org.jfrog.buildinfo</groupId>
163 <artifactId>artifactory-maven-plugin</artifactId>
164 <versionRange>[1.0.0,)</versionRange>
165 <goals>
166 <goal>publish</goal>
167 </goals>
168 </pluginExecutionFilter>
169 <action>
170 <ignore />
171 </action>
172 </pluginExecution>
173 </pluginExecutions>
174 </lifecycleMappingMetadata>
175 </configuration>
176 </plugin>
177 </plugins>
178 </pluginManagement>
179
180
181 </build>
182</project>
Note: See TracBrowser for help on using the repository browser.