source: osm/applications/editors/josm/plugins/flatlaf/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.1 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>flatlaf</artifactId>
10
11 <url>${plugin.link}</url>
12 <developers>
13 <developer>
14 <id>simon04</id>
15 </developer>
16 </developers>
17 <properties>
18 <plugin.src.dir>src</plugin.src.dir>
19 <plugin.main.version>16974</plugin.main.version>
20
21 <plugin.author>simon04</plugin.author>
22 <plugin.class>org.openstreetmap.josm.plugins.flatlaf.FlatLafPlugin</plugin.class>
23 <plugin.description>FlatLaf - Flat Look and Feel</plugin.description>
24 <plugin.icon>images/FlatLaf.svg</plugin.icon>
25 <plugin.early>true</plugin.early>
26 <plugin.stage>-4</plugin.stage><!-- very early plugin -->
27 <plugin.link>https://www.formdev.com/flatlaf/</plugin.link>
28 </properties>
29 <dependencies>
30 <dependency>
31 <groupId>com.formdev</groupId>
32 <artifactId>flatlaf</artifactId>
33 <version>3.2.2</version>
34 </dependency>
35 </dependencies>
36 <build>
37 <plugins>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-jar-plugin</artifactId>
41 <configuration>
42 <archive>
43 <manifestEntries>
44 <Plugin-Early>${plugin.early}</Plugin-Early>
45 <Plugin-Link>${plugin.link}</Plugin-Link>
46 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
47 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
48 </manifestEntries>
49 </archive>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54</project>
Note: See TracBrowser for help on using the repository browser.