Skip to content

Commit

Permalink
fixed snapshot repos
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Sep 12, 2024
1 parent 6622363 commit 2e2feae
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.imixs.workflow</groupId>
<artifactId>imixs-process-manager</artifactId>
Expand Down Expand Up @@ -63,15 +65,15 @@


<repositories>
<!-- Sonatype Snapshot repository -->
<repository>
<id>sonatype-snaptshots</id>
<name>Sonatype Snapshot repository</name>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
<id>oss-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>


<profiles>

<profile>
Expand Down Expand Up @@ -266,12 +268,14 @@
<exec executable="docker">
<arg value="build" />
<arg value="-t" />
<arg value="imixs/imixs-process-manager:${project.version}" />
<arg
value="imixs/imixs-process-manager:${project.version}" />
<arg value="." />
</exec>
<exec executable="docker">
<arg value="push" />
<arg value="imixs/imixs-process-manager:${project.version}" />
<arg
value="imixs/imixs-process-manager:${project.version}" />
</exec>
</target>
</configuration>
Expand Down Expand Up @@ -433,7 +437,7 @@
<version>${microprofile.version}</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
</dependency>

<!-- Imixs Workflow -->
<dependency>
Expand Down Expand Up @@ -471,4 +475,4 @@
</dependency> -->

</dependencies>
</project>
</project>

0 comments on commit 2e2feae

Please sign in to comment.