source: osm/applications/editors/josm/plugins/ejml/pom.xml@ 36296

Last change on this file since 36296 was 36282, checked in by taylor.smock, 8 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.4 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 <relativePath>../pom.xml</relativePath>
9 </parent>
10 <artifactId>ejml</artifactId>
11
12 <developers>
13 <developer>
14 <id>Don-vip</id>
15 </developer>
16 </developers>
17 <properties>
18 <plugin.src.dir>src</plugin.src.dir>
19 <plugin.main.version>10580</plugin.main.version>
20 <plugin.author>Don-vip</plugin.author>
21 <plugin.class>org.openstreetmap.josm.plugins.ejml.EjmlPlugin</plugin.class>
22 <plugin.description>Provides the EJML library for other JOSM plugins. Not meant to be installed directly by users, but rather as a dependency for other plugins.</plugin.description>
23 <plugin.icon>images/ejml.png</plugin.icon>
24 <plugin.canloadatruntime>true</plugin.canloadatruntime>
25 <plugin.stage>15</plugin.stage>
26 <plugin.minimum.java.version>11</plugin.minimum.java.version>
27 </properties>
28 <dependencies>
29 <dependency>
30 <groupId>org.ejml</groupId>
31 <artifactId>ejml-all</artifactId>
32 <version>0.43.1</version>
33 </dependency>
34 <dependency>
35 <groupId>org.ejml</groupId>
36 <artifactId>ejml-experimental</artifactId>
37 <version>0.43.1</version>
38 </dependency>
39 </dependencies>
40 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-jar-plugin</artifactId>
45 <configuration>
46 <archive>
47 <manifestEntries>
48 <Plugin-Minimum-Java-Version>${plugin.minimum.java.version}</Plugin-Minimum-Java-Version>
49 <Plugin-Icon>${plugin.icon}</Plugin-Icon>
50 <Plugin-Stage>${plugin.stage}</Plugin-Stage>
51 <Plugin-Canloadatruntime>${plugin.canloadatruntime}</Plugin-Canloadatruntime>
52 </manifestEntries>
53 </archive>
54 </configuration>
55 </plugin>
56 </plugins>
57 </build>
58</project>
Note: See TracBrowser for help on using the repository browser.