Skip to content

Commit f537e98

Browse files
jaar version number set according to mvn input
1 parent 83e1cd2 commit f537e98

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![FINOS - Incubating](https://cdn.jsdelivr.net/gh/finos/contrib-toolbox@master/images/badge-incubating.svg)](https://community.finos.org/docs/governance/Software-Projects/stages/incubating)
2+
13
<img align="right" width="40%" src="https://www.finos.org/hubfs/FINOS/finos-logo/FINOS_Icon_Wordmark_Name_RGB_horizontal.png">
24

35
# Rune Python Generator

pom.xml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
<groupId>com.regnosys.rosetta.code-generators</groupId>
1515
<artifactId>python-generator</artifactId>
16-
<version>0.0.0.main-SNAPSHOT</version>
17-
<packaging>jar</packaging> <!-- Changed from pom to jar -->
16+
<version>${project.version}</version>
17+
<packaging>jar</packaging>
1818
<name>code-gen-python</name>
1919

2020
<description>Generator to create Python from Rune</description>
@@ -87,6 +87,14 @@
8787
<groupId>org.apache.maven.plugins</groupId>
8888
<artifactId>maven-jar-plugin</artifactId>
8989
<version>${maven-jar-plugin.version}</version>
90+
<configuration>
91+
<archive>
92+
<manifest>
93+
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
94+
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
95+
</manifest>
96+
</archive>
97+
</configuration>
9098
</plugin>
9199
<plugin>
92100
<groupId>org.apache.maven.plugins</groupId>
@@ -140,6 +148,7 @@
140148
</profiles>
141149

142150
<properties>
151+
<project.version>0.0.0.main-SNAPSHOT</project.version>
143152
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
144153
<java.enforced.version>[17,18)</java.enforced.version>
145154
<maven.compiler.release>11</maven.compiler.release>
@@ -360,7 +369,7 @@
360369
<dependency>
361370
<groupId>com.regnosys.rosetta.code-generators</groupId>
362371
<artifactId>test-helper</artifactId>
363-
<version>${project.version}</version>
372+
<version>${rosetta.bundle.version}</version>
364373
<scope>test</scope>
365374
</dependency>
366375
<dependency>

0 commit comments

Comments
 (0)