Skip to content

Commit

Permalink
Bumped PMD version to 8.29
Browse files Browse the repository at this point in the history
  • Loading branch information
valdar committed Sep 11, 2023
1 parent 689a363 commit d62bc8b
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 51 deletions.
5 changes: 0 additions & 5 deletions connectors/camel-sjms2-kafka-connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,6 @@
<artifactId>camel-sjms2</artifactId>
</dependency>
<!--START OF GENERATED CODE-->
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-jms-client</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.camel.kafkaconnector</groupId>
<artifactId>camel-kafka-connector</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ protected CamelSinkConnectorConfig getCamelSinkConnectorConfig(
protected Map<String, String> getDefaultConfig() {
return new HashMap<String, String>() {{
put(CamelSinkConnectorConfig.CAMEL_SINK_COMPONENT_CONF, "sjms2");
put("camel.component.sjms2.connection-factory", "#class:org.apache.activemq.ActiveMQConnectionFactory");
put("camel.component.sjms2.connection-factory.brokerURL", "tcp://localhost:61616");
}};
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ protected CamelSourceConnectorConfig getCamelSourceConnectorConfig(
protected Map<String, String> getDefaultConfig() {
return new HashMap<String, String>() {{
put(CamelSourceConnectorConfig.CAMEL_SOURCE_COMPONENT_CONF, "sjms2");
put("camel.component.sjms2.connection-factory", "#class:org.apache.activemq.ActiveMQConnectionFactory");
put("camel.component.sjms2.connection-factory.brokerURL", "tcp://localhost:61616");
}};
}
}
19 changes: 4 additions & 15 deletions connectors/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
</dependencies>

<repositories>
Expand Down Expand Up @@ -198,21 +202,6 @@
</plugins>
</build>

<profiles>
<profile>
<id>java11-build</id>
<activation>
<jdk>[11,)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
</dependencies>
</profile>
</profiles>
<modules>
<module>camel-aws-cloudtrail-source-kafka-connector</module>
<module>camel-aws-cloudwatch-sink-kafka-connector</module>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -454,11 +454,11 @@ public void testSourcePollingWithAggregationBySize() {

for (int i = 0; i < size / chunkSize; i++) {
assertThat(records)
.element(i)
.hasFieldOrPropertyWithValue(
"value",
IntStream.range(i * chunkSize, (i * chunkSize) + chunkSize).mapToObj(Integer::toString).collect(Collectors.joining("|"))
);
.element(i)
.hasFieldOrPropertyWithValue(
"value",
IntStream.range(i * chunkSize, (i * chunkSize) + chunkSize).mapToObj(Integer::toString).collect(Collectors.joining("|"))
);
}

} finally {
Expand Down
2 changes: 1 addition & 1 deletion parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<version.scala.library>2.12.12</version.scala.library>
<version.maven.maven-remote-resources-plugin>1.6.0</version.maven.maven-remote-resources-plugin>

<version.maven.checkstyle>8.26</version.maven.checkstyle>
<version.maven.checkstyle>8.29</version.maven.checkstyle>
<version.maven.checkstyle.plugin>3.1.0</version.maven.checkstyle.plugin>
<version.maven.surefire.plugin>3.0.0-M4</version.maven.surefire.plugin>
<version.plexus.build.api>0.0.7</version.plexus.build.api>
Expand Down
1 change: 0 additions & 1 deletion tests/itests-cxf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>

</dependencies>
Expand Down
1 change: 0 additions & 1 deletion tests/itests-cxfrs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

import com.soebes.itf.jupiter.extension.MavenGoal;
import com.soebes.itf.jupiter.extension.MavenJupiterExtension;
import com.soebes.itf.jupiter.extension.MavenOption;
import com.soebes.itf.jupiter.extension.MavenProject;
import com.soebes.itf.jupiter.extension.MavenRepository;
import com.soebes.itf.jupiter.extension.MavenTest;
Expand All @@ -53,7 +54,7 @@ class GenerateCamelKafkaConnectorsMojoIT {
@Order(10)
@MavenGoal("clean")
@MavenGoal("verify")
// @MavenOption("--no-snapshot-updates")
@MavenOption("--no-snapshot-updates")
// @MavenOption(MavenCLIOptions.DEBUG)
public void test_generate(MavenExecutionResult result) throws IOException {
assertThat(result).isSuccessful();
Expand Down Expand Up @@ -91,9 +92,9 @@ public void test_generate(MavenExecutionResult result) throws IOException {
}

@MavenTest
@Order(20)
@Order(30)
@MavenGoal("package")
// @MavenOption("--no-snapshot-updates")
@MavenOption("--no-snapshot-updates")
// @MavenOption(MavenCLIOptions.DEBUG)
public void test_build(MavenExecutionResult result) throws IOException {
assertThat(result).isSuccessful();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,12 @@
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
Expand Down Expand Up @@ -215,22 +221,6 @@
</plugins>
</build>

<profiles>
<profile>
<id>java11-build</id>
<activation>
<jdk>[11,)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
</dependencies>
</profile>
</profiles>

<modules>
</modules>
</project>

0 comments on commit d62bc8b

Please sign in to comment.