Skip to content

Commit a2fcacc

Browse files
committed
Fixed overlooked change of groupId in resource
1 parent aaa510f commit a2fcacc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

core/src/main/java/org/jclouds/JcloudsVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
public class JcloudsVersion {
3535
@VisibleForTesting
36-
static final String VERSION_RESOURCE_FILE = "META-INF/maven/org.apache.jclouds/jclouds-core/pom.properties";
36+
static final String VERSION_RESOURCE_FILE = "META-INF/maven/com.github.felfert.jclouds/jclouds-core/pom.properties";
3737
private static final String VERSION_PROPERTY_NAME = "version";
3838

3939
/*

core/src/test/resources/META-INF/maven/org.apache.jclouds/jclouds-core/pom.properties renamed to core/src/test/resources/META-INF/maven/com.github.felfert.jclouds/jclouds-core/pom.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121

2222
# Dummy pom.properties file for testing
2323
version=0.0.0-SNAPSHOT
24-
groupId=org.apache.jclouds
24+
groupId=com.github.felfert.jclouds
2525
artifactId=jclouds-core

project/bnd.bnd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Implementation-Vendor: \
1414
jclouds
1515

1616
Implementation-Vendor-Id: \
17-
org.apache.jclouds
17+
com.github.felfert.jclouds
1818

1919
Implementation-Version: \
2020
${project.version}
@@ -27,4 +27,4 @@ X-Compile-Target-JDK: \
2727

2828
Import-Package: \
2929
com.google.common.*;version="[27.1,30.1.0)", \
30-
*
30+
*

0 commit comments

Comments
 (0)