Skip to content

Commit

Permalink
Allow building without parentpom repo available
Browse files Browse the repository at this point in the history
Change-Id: Ic882bee26fb008a3abe81b3016653d86834ce649
  • Loading branch information
linustolke committed Aug 21, 2022
1 parent cf97e97 commit 8ffd969
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<groupId>org.argouml</groupId>
<artifactId>parentpom</artifactId>
<version>0.35.5-SNAPSHOT</version>
<relativePath>../parentpom/pom.xml</relativePath>
</parent>

<artifactId>argouml-i18n-pt</artifactId>
Expand Down Expand Up @@ -57,4 +56,19 @@ Portuguese localization.
<!-- Specify this or maven will add artifactId. -->
<url>https://github.com/argouml-tigris-org/${github.site.repositoryName}</url>
</scm>

<repositories>
<!-- Repo specified to find parentpom remotely. -->
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
</project>

0 comments on commit 8ffd969

Please sign in to comment.