Changeset 19206 in josm


Ignore:
Timestamp:
2024-08-28T20:42:11+02:00 (8 weeks ago)
Author:
taylor.smock
Message:

See #23875: Use SNAPSHOT instead of 1.0-SNAPSHOT since that is what our scripts currently publish

This should fix the Jenkins build for plugins.

Note: Maven warns that this may break in the future, in which case we'll have to
change our processes.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/nodist/pom.xml

    r19203 r19206  
    55    <groupId>org.openstreetmap.josm</groupId>
    66    <artifactId>josm-parent</artifactId>
    7     <version>1.0-SNAPSHOT</version>
     7    <version>SNAPSHOT</version>
    88    <packaging>pom</packaging>
    99    <properties>
     
    4040        </pluginRepository>
    4141    </pluginRepositories>
     42    <distributionManagement>
     43        <snapshotRepository>
     44            <id>josm-snapshots</id>
     45            <name>JOSM snapshots</name>
     46            <url>https://josm.openstreetmap.de/nexus/content/repositories/snapshots</url>
     47        </snapshotRepository>
     48    </distributionManagement>
    4249    <build>
    4350        <pluginManagement>
  • trunk/pom.xml

    r19148 r19206  
    77    <groupId>org.openstreetmap.josm</groupId>
    88    <artifactId>josm-parent</artifactId>
    9     <version>1.0-SNAPSHOT</version>
     9    <version>SNAPSHOT</version>
    1010    <relativePath>./nodist/pom.xml</relativePath>
    1111  </parent>
  • trunk/test/pom.xml

    r19097 r19206  
    33    <modelVersion>4.0.0</modelVersion>
    44    <artifactId>josm-unittest</artifactId>
    5     <version>1.0-SNAPSHOT</version>
     5    <version>SNAPSHOT</version>
    66
    77    <parent>
    88        <groupId>org.openstreetmap.josm</groupId>
    99        <artifactId>josm-parent</artifactId>
    10         <version>1.0-SNAPSHOT</version>
     10        <version>SNAPSHOT</version>
    1111        <relativePath>../nodist/pom.xml</relativePath>
    1212    </parent>
     
    1818            <groupId>org.openstreetmap.josm</groupId>
    1919            <artifactId>josm</artifactId>
    20             <version>1.0-SNAPSHOT</version>
     20            <version>SNAPSHOT</version>
    2121            <scope>provided</scope>
    2222        </dependency>
Note: See TracChangeset for help on using the changeset viewer.