Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
.project
*.iml

.idea
.idea/*
!.idea/icon.svg
build

dbus-java-osgi/META-INF
Expand Down
9 changes: 9 additions & 0 deletions .idea/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 11 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<properties>
<!-- Dependency versions -->
<junit6.version>6.0.1</junit6.version>
<pmd.version>7.22.0</pmd.version>
<pmd.version>7.27.0</pmd.version>
<checkstyle.version>12.3.0</checkstyle.version>
<logback.version>1.5.35</logback.version>
<slf4j.version>2.0.17</slf4j.version>
Expand All @@ -33,7 +33,7 @@
<mvn.maven.clean.plugin>3.5.0</mvn.maven.clean.plugin>
<mvn.maven.compiler.plugin>3.14.1</mvn.maven.compiler.plugin>
<mvn.maven.deploy.plugin>3.1.4</mvn.maven.deploy.plugin>
<mvn.maven.enforcer.plugin>3.6.2</mvn.maven.enforcer.plugin>
<mvn.maven.enforcer.plugin>3.6.3</mvn.maven.enforcer.plugin>
<mvn.maven.gpg.plugin>3.2.8</mvn.maven.gpg.plugin>
<mvn.maven.install.plugin>3.1.4</mvn.maven.install.plugin>
<mvn.maven.jar.plugin>3.5.0</mvn.maven.jar.plugin>
Expand All @@ -46,8 +46,8 @@
<mvn.maven.source.plugin>3.4.0</mvn.maven.source.plugin>
<mvn.maven.surefire.plugin>3.5.4</mvn.maven.surefire.plugin>
<mvn.sonar.maven.plugin>5.5.0.6356</mvn.sonar.maven.plugin>
<mvn.versions.maven.plugin>2.20.1</mvn.versions.maven.plugin>
<mvn.centralpublishing.plugin.version>0.9.0</mvn.centralpublishing.plugin.version>
<mvn.versions.maven.plugin>2.21.0</mvn.versions.maven.plugin>
<mvn.centralpublishing.plugin.version>0.11.0</mvn.centralpublishing.plugin.version>

<!-- Code analysis -->
<check.skip-javadoc>false</check.skip-javadoc>
Expand All @@ -58,8 +58,6 @@
<!-- Build properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>21</maven.compiler.release>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>

<parentDir>${maven.multiModuleProjectDirectory}</parentDir>
<project.build.outputTimestamp>2025-12-21T13:12:42Z</project.build.outputTimestamp>
Expand All @@ -80,6 +78,7 @@
</modules>

<build>
<defaultGoal>clean verify</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -199,6 +198,7 @@
<requireOS>
<family>unix</family>
</requireOS>
<banDuplicatePomDependencyVersions/>
</rules>
</configuration>
</execution>
Expand Down Expand Up @@ -247,17 +247,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${mvn.maven.compiler.plugin}</version>
<executions>
<execution>
<id>compile</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<release>${maven.compiler.source}</release>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -552,6 +541,11 @@
<tag>HEAD</tag>
</scm>

<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/hypfvieh/dbus-java/issues</url>
</issueManagement>

<licenses>
<license>
<name>MIT License</name>
Expand Down
Loading