1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
---|
2 | 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 | <parent>
|
---|
5 | <groupId>org.openstreetmap.josm.plugins</groupId>
|
---|
6 | <artifactId>plugin-root</artifactId>
|
---|
7 | <version>SNAPSHOT</version>
|
---|
8 | </parent>
|
---|
9 | <artifactId>apache-commons</artifactId>
|
---|
10 |
|
---|
11 | <developers>
|
---|
12 | <developer>
|
---|
13 | <id>nokutu</id>
|
---|
14 | </developer>
|
---|
15 | <developer>
|
---|
16 | <id>Don-vip</id>
|
---|
17 | </developer>
|
---|
18 | </developers>
|
---|
19 | <properties>
|
---|
20 | <plugin.src.dir>src</plugin.src.dir>
|
---|
21 | <plugin.main.version>19044</plugin.main.version>
|
---|
22 | <plugin.canloadatruntime>true</plugin.canloadatruntime>
|
---|
23 | <plugin.author>nokutu; Don-vip</plugin.author>
|
---|
24 | <plugin.class>org.openstreetmap.josm.plugins.commons.CommonsPlugin</plugin.class>
|
---|
25 | <plugin.description>Provides Apache Commons library components. Not meant to be installed directly by users, but rather as a dependency for other plugins.</plugin.description>
|
---|
26 | <plugin.stage>10</plugin.stage>
|
---|
27 | </properties>
|
---|
28 | <dependencies>
|
---|
29 | <dependency>
|
---|
30 | <groupId>com.github.luben</groupId>
|
---|
31 | <artifactId>zstd-jni</artifactId>
|
---|
32 | <version>1.5.6-6</version>
|
---|
33 | <scope>compile</scope>
|
---|
34 | </dependency>
|
---|
35 | <dependency>
|
---|
36 | <groupId>org.apache.commons</groupId>
|
---|
37 | <artifactId>commons-collections4</artifactId>
|
---|
38 | <version>4.4</version>
|
---|
39 | <scope>compile</scope>
|
---|
40 | </dependency>
|
---|
41 | <dependency>
|
---|
42 | <groupId>org.apache.commons</groupId>
|
---|
43 | <artifactId>commons-compress</artifactId>
|
---|
44 | <!-- version is in parent pom -->
|
---|
45 | <scope>compile</scope>
|
---|
46 | </dependency>
|
---|
47 | <dependency>
|
---|
48 | <groupId>org.apache.commons</groupId>
|
---|
49 | <artifactId>commons-imaging</artifactId>
|
---|
50 | <version>1.0.0-alpha5</version>
|
---|
51 | <scope>compile</scope>
|
---|
52 | </dependency>
|
---|
53 | <dependency>
|
---|
54 | <groupId>commons-io</groupId>
|
---|
55 | <artifactId>commons-io</artifactId>
|
---|
56 | <version>2.17.0</version>
|
---|
57 | <scope>compile</scope>
|
---|
58 | </dependency>
|
---|
59 | <dependency>
|
---|
60 | <groupId>commons-logging</groupId>
|
---|
61 | <artifactId>commons-logging</artifactId>
|
---|
62 | <version>1.3.4</version>
|
---|
63 | <scope>compile</scope>
|
---|
64 | </dependency>
|
---|
65 | <dependency>
|
---|
66 | <groupId>org.apache.commons</groupId>
|
---|
67 | <artifactId>commons-lang3</artifactId>
|
---|
68 | <!-- version is in parent pom -->
|
---|
69 | <scope>compile</scope>
|
---|
70 | </dependency>
|
---|
71 | <dependency>
|
---|
72 | <groupId>org.apache.commons</groupId>
|
---|
73 | <artifactId>commons-math3</artifactId>
|
---|
74 | <version>3.6.1</version>
|
---|
75 | <scope>compile</scope>
|
---|
76 | </dependency>
|
---|
77 | <dependency>
|
---|
78 | <groupId>org.apache.commons</groupId>
|
---|
79 | <artifactId>commons-text</artifactId>
|
---|
80 | <version>1.12.0</version>
|
---|
81 | <scope>compile</scope>
|
---|
82 | </dependency>
|
---|
83 | <dependency>
|
---|
84 | <groupId>org.brotli</groupId>
|
---|
85 | <artifactId>dec</artifactId>
|
---|
86 | <version>0.1.2</version>
|
---|
87 | <scope>compile</scope>
|
---|
88 | </dependency>
|
---|
89 | <dependency>
|
---|
90 | <groupId>org.tukaani</groupId>
|
---|
91 | <artifactId>xz</artifactId>
|
---|
92 | <!-- version is in parent pom -->
|
---|
93 | <scope>compile</scope>
|
---|
94 | </dependency>
|
---|
95 | </dependencies>
|
---|
96 | <build>
|
---|
97 | <plugins>
|
---|
98 | <plugin>
|
---|
99 | <groupId>org.apache.maven.plugins</groupId>
|
---|
100 | <artifactId>maven-jar-plugin</artifactId>
|
---|
101 | <configuration>
|
---|
102 | <archive>
|
---|
103 | <manifestEntries>
|
---|
104 | <Plugin-Stage>${plugin.stage}</Plugin-Stage>
|
---|
105 | <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
|
---|
106 | </manifestEntries>
|
---|
107 | </archive>
|
---|
108 | </configuration>
|
---|
109 | </plugin>
|
---|
110 | </plugins>
|
---|
111 | </build>
|
---|
112 | </project>
|
---|