Skip to content

Commit

Permalink
change bundle name to follow extension pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Jun 20, 2024
1 parent 4e898e8 commit d33a43c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ start-bundles: false

<!-- Put everything in ${build} into .jar file -->
<jar
jarfile="${dist}/extension/jars/${filename}-${bundleversion}.jar" basedir="${build}" manifest="${src}/META-INF/MANIFEST.MF">
jarfile="${dist}/extension/jars/${bundlename}-${bundleversion}.jar" basedir="${build}" manifest="${src}/META-INF/MANIFEST.MF">
<manifest>
<attribute name="Bundle-Version" value="${bundleversion}"/>
<attribute name="Built-Date" value="${NOW}"/>
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.lucee</groupId>
<artifactId>kinesis-extension</artifactId>
<version>1.0.0.83</version>
<version>1.0.0.83-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Kinesis Extension</name>

Expand All @@ -13,6 +13,7 @@
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<id>D6700FE4-E168-4512-9B95E1AE7784A3A5</id>
<bundlename>org.lucee.kinesis.extension</bundlename>
<luceeCoreVersion>5.0.0.157</luceeCoreVersion>
<releaseType>server</releaseType>
<label>AWS Kinesis Resource Extension</label>
Expand Down Expand Up @@ -128,7 +129,7 @@
<target>
<ant antfile="build.xml" target="clean">
<property name="bundleversion" value="${project.version}"/>
<property name="bundlename" value="${project.artifactId}"/>
<property name="bundlename" value="${bundlename}"/>
<property name="filename" value="${project.artifactId}"/>
<property name="id" value="${id}"/>
<property name="luceeCoreVersion" value="${luceeCoreVersion}"/>
Expand Down

0 comments on commit d33a43c

Please sign in to comment.