source: osm/applications/editors/josm/plugins/log4j/pom.xml@ 36312

Last change on this file since 36312 was 36282, checked in by taylor.smock, 7 months ago

Fix #8269: Add initial maven pom files

This additionally deletes most IDE specific configuration, in favor of Maven
configuration.

What this does not do:

  • Convert from ivy to maven for dependency management. This should happen eventually with maven-resolver-ant-tasks (probably with the next dependency update).
  • Deprecate the current ant scripts.
File size: 2.5 KB
Line 
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>1.0-SNAPSHOT</version>
8 </parent>
9 <artifactId>log4j</artifactId>
10
11 <developers>
12 <developer>
13 <id>Don-vip</id>
14 </developer>
15 </developers>
16 <properties>
17 <plugin.src.dir>src</plugin.src.dir>
18 <plugin.main.version>19044</plugin.main.version>
19 <plugin.author>Don-vip</plugin.author>
20 <plugin.class>org.openstreetmap.josm.plugins.log4j.Log4jPlugin</plugin.class>
21 <plugin.description>Provides the Log4j library for other JOSM plugins. Not meant to be installed directly by users, but rather as a dependency for other plugins.</plugin.description>
22 <plugin.early>true</plugin.early>
23 <plugin.stage>5</plugin.stage>
24 </properties>
25 <dependencyManagement>
26 <dependencies>
27 <dependency>
28 <groupId>org.apache.logging.log4j</groupId>
29 <artifactId>log4j-bom</artifactId>
30 <version>2.23.1</version>
31 <scope>import</scope>
32 <type>pom</type>
33 </dependency>
34 </dependencies>
35 </dependencyManagement>
36 <dependencies>
37 <dependency>
38 <groupId>org.apache.logging.log4j</groupId>
39 <artifactId>log4j-api</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>org.apache.logging.log4j</groupId>
43 <artifactId>log4j-1.2-api</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.apache.logging.log4j</groupId>
47 <artifactId>log4j-core</artifactId>
48 </dependency>
49 </dependencies>
50 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-jar-plugin</artifactId>
55 <configuration>
56 <archive>
57 <manifestEntries>
58 <Plugin-Early>${plugin.early}</Plugin-Early>
59 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
60 </manifestEntries>
61 </archive>
62 </configuration>
63 </plugin>
64 </plugins>
65 </build>
66</project>
Note: See TracBrowser for help on using the repository browser.