comparison env/lib/python3.7/site-packages/schema_salad/java/pom.xml @ 0:26e78fe6e8c4 draft

"planemo upload commit c699937486c35866861690329de38ec1a5d9f783"
author shellac
date Sat, 02 May 2020 07:14:21 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:26e78fe6e8c4
1 <?xml version="1.0"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <groupId>${group_id}</groupId>
6 <artifactId>${artifact_id}</artifactId>
7 <packaging>jar</packaging>
8 <name>${project_name}</name>
9 <description><![CDATA[${project_description}]]></description>
10 <version>${version}</version>
11
12 <properties>
13 <commonslang.version>3.7</commonslang.version>
14 </properties>
15
16 <licenses>
17 <license>
18 <name>${license_name}</name>
19 <url>${license_url}</url>
20 </license>
21 </licenses>
22
23 <build>
24 <pluginManagement>
25 <plugins>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-deploy-plugin</artifactId>
29 <version>2.8.2</version>
30 </plugin>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-compiler-plugin</artifactId>
34 <version>3.8.0</version>
35 <configuration>
36 <release>11</release>
37 <showDeprecation>true</showDeprecation>
38 </configuration>
39 </plugin>
40 </plugins>
41 </pluginManagement>
42
43 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-release-plugin</artifactId>
47 <version>2.5.3</version>
48 </plugin>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-deploy-plugin</artifactId>
52 <version>2.8.2</version>
53 </plugin>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-surefire-plugin</artifactId>
57 <version>2.21.0</version>
58 </plugin>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-javadoc-plugin</artifactId>
62 <version>3.1.1</version>
63 <configuration>
64 </configuration>
65 </plugin>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-jar-plugin</artifactId>
69 <configuration>
70 <archive>
71 <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
72 </archive>
73 </configuration>
74 </plugin>
75 <plugin>
76 <artifactId>maven-assembly-plugin</artifactId>
77 <configuration>
78 <archive>
79 <manifest>
80 <mainClass>${package}.utils.Validator</mainClass>
81 </manifest>
82 </archive>
83 <descriptorRefs>
84 <descriptorRef>jar-with-dependencies</descriptorRef>
85 </descriptorRefs>
86 </configuration>
87 </plugin>
88 <plugin>
89 <groupId>com.coveo</groupId>
90 <artifactId>fmt-maven-plugin</artifactId>
91 <version>2.9</version>
92 <executions>
93 <execution>
94 <goals>
95 <goal>format</goal>
96 </goals>
97 </execution>
98 </executions>
99 </plugin>
100 </plugins>
101 </build>
102
103 <dependencyManagement>
104 <dependencies>
105 <dependency>
106 <groupId>org.apache.commons</groupId>
107 <artifactId>commons-lang3</artifactId>
108 <version>${commonslang.version}</version>
109 </dependency>
110 </dependencies>
111 </dependencyManagement>
112
113 <dependencies>
114 <dependency>
115 <groupId>junit</groupId>
116 <artifactId>junit</artifactId>
117 <version>4.12</version>
118 </dependency>
119 <dependency>
120 <groupId>org.yaml</groupId>
121 <artifactId>snakeyaml</artifactId>
122 <version>1.24</version>
123 </dependency>
124 </dependencies>
125 </project>