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.2 KB
|
Rev | Line | |
---|
[36282] | 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>apache-http</artifactId>
|
---|
| 10 | <developers>
|
---|
| 11 | <developer>
|
---|
| 12 | <id>Don-vip</id>
|
---|
| 13 | </developer>
|
---|
| 14 | </developers>
|
---|
| 15 | <properties>
|
---|
| 16 | <plugin.src.dir>${project.basedir}/src</plugin.src.dir>
|
---|
| 17 | <plugin.main.version>19044</plugin.main.version>
|
---|
| 18 | <plugin.author>Don-vip</plugin.author>
|
---|
| 19 | <plugin.class>org.openstreetmap.josm.plugins.http.HttpPlugin</plugin.class>
|
---|
| 20 | <plugin.description>Provides Apache HTTP library. Not meant to be installed directly by users, but rather as a dependency for other plugins.</plugin.description>
|
---|
| 21 | <plugin.requires>apache-commons;jna</plugin.requires>
|
---|
| 22 | <plugin.stage>15</plugin.stage>
|
---|
| 23 | </properties>
|
---|
| 24 | <dependencies>
|
---|
| 25 | <dependency>
|
---|
| 26 | <groupId>org.openstreetmap.josm.plugins</groupId>
|
---|
| 27 | <artifactId>apache-commons</artifactId>
|
---|
| 28 | <version>1.0-SNAPSHOT</version>
|
---|
| 29 | <scope>provided</scope>
|
---|
| 30 | </dependency>
|
---|
| 31 | <dependency>
|
---|
| 32 | <groupId>org.apache.httpcomponents.client5</groupId>
|
---|
| 33 | <artifactId>httpclient5</artifactId>
|
---|
| 34 | <version>5.3.1</version>
|
---|
| 35 | <scope>compile</scope>
|
---|
| 36 | </dependency>
|
---|
| 37 | </dependencies>
|
---|
| 38 | <build>
|
---|
| 39 | <plugins>
|
---|
| 40 | <plugin>
|
---|
| 41 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 42 | <artifactId>maven-jar-plugin</artifactId>
|
---|
| 43 | <configuration>
|
---|
| 44 | <archive>
|
---|
| 45 | <manifestEntries>
|
---|
| 46 | <Plugin-Stage>${plugin.stage}</Plugin-Stage>
|
---|
| 47 | <Plugin-Requires>${plugin.requires}</Plugin-Requires>
|
---|
| 48 | </manifestEntries>
|
---|
| 49 | </archive>
|
---|
| 50 | </configuration>
|
---|
| 51 | </plugin>
|
---|
| 52 | </plugins>
|
---|
| 53 | </build>
|
---|
| 54 | </project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.