Skip to content

Commit

Permalink
smallrye#316: fix parent pom versions
Browse files Browse the repository at this point in the history
Signed-off-by: Rüdiger zu Dohna <[email protected]>
  • Loading branch information
t1 committed Dec 9, 2020
1 parent c811648 commit e89f272
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ private static boolean replace(List<AnnotationInstance> instances, AnnotationIns
private static <K, V> List<V> get(Map<K, List<V>> map, K name) {
// we can't use `map.computeIfAbsent()`, because Maven plugins can't run with lambdas and fail with IndexOutOfBounds
if (!map.containsKey(name))
map.put(name, new ArrayList<>());
map.put(name, new ArrayList<>());
return map.get(name);
}

Expand Down
2 changes: 1 addition & 1 deletion power-annotations/scanner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-power-annotations-parent</artifactId>
<version>1.0.19-SNAPSHOT</version>
<version>1.0.20-SNAPSHOT</version>
</parent>

<artifactId>power-annotations-scanner</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion power-annotations/tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-power-annotations-parent</artifactId>
<version>1.0.19-SNAPSHOT</version>
<version>1.0.20-SNAPSHOT</version>
</parent>

<artifactId>power-annotations-tck</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion power-annotations/utils/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-power-annotations-utils-parent</artifactId>
<version>1.0.19-SNAPSHOT</version>
<version>1.0.20-SNAPSHOT</version>
</parent>

<artifactId>smallrye-power-annotations-utils-api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion power-annotations/utils/jandex/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-power-annotations-utils-parent</artifactId>
<version>1.0.19-SNAPSHOT</version>
<version>1.0.20-SNAPSHOT</version>
</parent>

<artifactId>smallrye-power-annotations-utils-jandex</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion power-annotations/utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-power-annotations-parent</artifactId>
<version>1.0.19-SNAPSHOT</version>
<version>1.0.20-SNAPSHOT</version>
</parent>

<artifactId>smallrye-power-annotations-utils-parent</artifactId>
Expand Down

0 comments on commit e89f272

Please sign in to comment.