Skip to content

Commit

Permalink
test creating a snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Jun 19, 2024
1 parent 2891ac9 commit 925fafd
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +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/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://www.w3.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.lucee</groupId>
<artifactId>kinesis-extension</artifactId>
Expand All @@ -12,10 +12,6 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<groupId>org.lucee</groupId>
<artifactId>kinesis-extension</artifactId>
<bundlename>kinesis-extension</bundlename>
<bundleversion>1.0.0.79-SNAPSHOT</bundleversion>
</properties>

<scm>
Expand Down Expand Up @@ -83,7 +79,7 @@
<configuration>
<target>
<ant antfile="build.xml" target="clean">
<property name="bundleversion" value="${bundleversion}"/>
<property name="bundleversion" value="${project.version}"/>
</ant>
</target>
</configuration>
Expand Down Expand Up @@ -136,12 +132,14 @@
<goal>deploy-file</goal>
</goals>
<configuration>
<file>${project.build.directory}/${bundlename}-${bundleversion}.lex</file>
<groupId>${groupId}</groupId>
<artifactId>${bundlename}</artifactId>
<version>${bundleversion}</version>
<file>${project.build.directory}/${project.artifactId}-${project.version}.lex</file>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<repositoryId>ossrh</repositoryId>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<url>
${project.version.endsWith("SNAPSHOT") ? "https://oss.sonatype.org/content/repositories/snapshots" : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"}
</url>
<packaging>lex</packaging>
</configuration>
</execution>
Expand Down

0 comments on commit 925fafd

Please sign in to comment.