Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumping versions #337

Merged
merged 7 commits into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pi4j-distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
<description>Pi4J Distribution Packages</description>
<packaging>deb</packaging>


<!-- PROJECT DEPENDENCIES -->
<dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class AutoProvidersTest {
@BeforeAll
public void beforeTest() {

System.setProperty(org.slf4j.impl.SimpleLogger.DEFAULT_LOG_LEVEL_KEY, "TRACE");
System.setProperty(org.slf4j.simple.SimpleLogger.DEFAULT_LOG_LEVEL_KEY, "TRACE");

// initialize Pi4J with an auto context
// An auto context includes AUTO-DETECT BINDINGS enabled
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class RegistryGetIoInstance {

@BeforeAll
public void beforeTest() throws Pi4JException {
System.setProperty(org.slf4j.impl.SimpleLogger.DEFAULT_LOG_LEVEL_KEY, "INFO");
System.setProperty(org.slf4j.simple.SimpleLogger.DEFAULT_LOG_LEVEL_KEY, "INFO");

// initialize Pi4J with an auto context
// An auto context includes AUTO-DETECT BINDINGS enabled
Expand Down
35 changes: 11 additions & 24 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@

<!-- DISTRIBUTION REPOSITORIES -->
<distributionManagement>
<downloadUrl>https://v2.pi4j.com/download</downloadUrl>
<downloadUrl>https://pi4j.com/download</downloadUrl>
<repository>
<id>sonatype-oss-staging</id>
<name>Sonatype Open Source Maven Repository</name>
Expand Down Expand Up @@ -254,15 +254,12 @@
<maven.compiler.target>${java.version}</maven.compiler.target>

<!-- DEPENDENCY VERSIONS -->
<ant-jsch.version>1.10.8</ant-jsch.version>
<ant-jsch.version>1.10.14</ant-jsch.version>
<jsch.version>0.1.55</jsch.version>
<ant-contrib.version>20020829</ant-contrib.version>
<junit.jupiter.version>5.6.2</junit.jupiter.version>
<junit.platform.version>1.6.2</junit.platform.version>
<slf4j.version>1.7.32</slf4j.version>
<jSerialComm.version>2.6.2</jSerialComm.version>
<gson.version>2.8.6</gson.version>
<json.version>20200518</json.version>
<ant-contrib.version>1.0b3</ant-contrib.version>
<junit.jupiter.version>5.10.2</junit.jupiter.version>
<slf4j.version>2.0.12</slf4j.version>
<jserialcomm.version>2.10.4</jserialcomm.version>

<!-- PLUGIN VERSIONS -->
<maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
Expand All @@ -273,23 +270,21 @@
<maven-resource-plugin.version>3.2.0</maven-resource-plugin.version>
<maven-site-plugin.version>3.9.1</maven-site-plugin.version>
<maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<maven-gpg-plugin.version>3.2.1</maven-gpg-plugin.version>
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
<maven-scm-plugin.version>1.11.2</maven-scm-plugin.version>
<maven-bundle-plugin.version>5.1.2</maven-bundle-plugin.version>
<maven-antrun-plugin.version>3.0.0</maven-antrun-plugin.version>
<maven-antrun-plugin.version>3.1.0</maven-antrun-plugin.version>
<maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
<native-maven-plugin.version>1.0-alpha-9</native-maven-plugin.version>
<maven-release-plugin.version>3.0.0-M4</maven-release-plugin.version>
<license-maven-plugin.version>2.0.0</license-maven-plugin.version>
<build-helper-maven-plugin.version>3.2.0</build-helper-maven-plugin.version>
<jdeb.version>1.8</jdeb.version>
<exec-maven-plugin.version>3.0.0</exec-maven-plugin.version>
<s3-upload-maven-plugin.version>1.5</s3-upload-maven-plugin.version>
<exec-maven-plugin.version>3.2.0</exec-maven-plugin.version>
<lifecycle-mapping.version>1.0.0</lifecycle-mapping.version>

<!-- REPORTS VERSIONS -->
<maven-project-info-reports-plugin.version>3.1.1</maven-project-info-reports-plugin.version>
<maven-project-info-reports-plugin.version>3.5.0</maven-project-info-reports-plugin.version>

<!-- SPECIAL ACCESS PROPERTIES -->
<!-- These are only used by project committer/publisher -->
Expand All @@ -313,7 +308,6 @@
<raspberrypi.password>raspberry</raspberrypi.password>
<raspberrypi.deploydirectory>/home/pi/deploy</raspberrypi.deploydirectory>
<raspberrypi.jvmOptions/>

</properties>

<!-- PROJECT DEPENDENCIES -->
Expand Down Expand Up @@ -383,7 +377,7 @@
<dependency>
<groupId>com.fazecast</groupId>
<artifactId>jSerialComm</artifactId>
<version>2.5.1</version>
<version>${jserialcomm.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -665,13 +659,6 @@
<version>${jdeb.version}</version>
</plugin>

<!-- AWS S3 UPLOAD PLUGIN -->
<plugin>
<groupId>com.bazaarvoice.maven.plugins</groupId>
<artifactId>s3-upload-maven-plugin</artifactId>
<version>${s3-upload-maven-plugin.version}</version>
</plugin>

<!-- ENFORCER PLUGIN -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
Loading