generated from it-at-m/oss-repository-en-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ♻️ mv pmd conf to separate module * 🔧 gateway use pmd module * 👷 ci add refarch-libs * 👷 libs add maven central release to pom * 📝 add refarch-libs to issue templates * ♻️ pmd module rename parent to refarch-tools * Revert "🔧 gateway use pmd module" This reverts commit 820fa8b. * 🔖 pmd share-files duplicate for now * ♻️ pmd module rename parent to refarch-tools * ♻️ pmd module rename parent to refarch-tools * 🔧 refarch-tools use default pom * 🔧 pmd dummy class for javadoc * 🔧 refarch-tools rm pmd and spotbugs * 🔧 refarch-tools cleanup pom * 🔧 pmd use parent pom * 🔧 pmd update ruleset description * 💚 ci codeql add refarch-tools
- Loading branch information
Showing
13 changed files
with
246 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: build-tools | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build-maven: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
- name: Maven build | ||
uses: ./.github/actions/build-maven | ||
with: | ||
module: refarch-tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-parent</artifactId> | ||
<version>3.3.4</version> | ||
<relativePath /> | ||
</parent> | ||
|
||
<groupId>de.muenchen.refarch</groupId> | ||
<artifactId>refarch-tools</artifactId> | ||
<name>refarch-tools</name> | ||
<description>Collection of different RefArch development tools</description> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
|
||
<modules> | ||
<module>refarch-pmd</module> | ||
</modules> | ||
|
||
<properties> | ||
<!-- Compilation --> | ||
<java.version>21</java.version> | ||
<maven.compiler.source>${java.version}</maven.compiler.source> | ||
<maven.compiler.target>${java.version}</maven.compiler.target> | ||
<maven.compiler.release>${java.version}</maven.compiler.release> | ||
|
||
<!-- Release --> | ||
<maven-release-plugin.version>3.1.1</maven-release-plugin.version> | ||
</properties> | ||
|
||
<build> | ||
<plugins> | ||
<!-- Build --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
</plugin> | ||
<!-- Release --> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-release-plugin</artifactId> | ||
<version>${maven-release-plugin.version}</version> | ||
<configuration> | ||
<autoVersionSubmodules>true</autoVersionSubmodules> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-deploy-plugin</artifactId> | ||
<configuration> | ||
<skip>true</skip> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<scm> | ||
<url>https://github.com/it-at-m/refarch.git</url> | ||
<connection>scm:git:https://github.com/it-at-m/refarch.git</connection> | ||
<developerConnection>scm:git:https://github.com/it-at-m/refarch.git</developerConnection> | ||
<tag>HEAD</tag> | ||
</scm> | ||
<licenses> | ||
<license> | ||
<name>MIT</name> | ||
</license> | ||
</licenses> | ||
<developers> | ||
<developer> | ||
<organization>it@M</organization> | ||
<email>opensource@muenchen.de</email> | ||
<url>https://github.com/it-at-m</url> | ||
</developer> | ||
</developers> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>de.muenchen.refarch</groupId> | ||
<artifactId>refarch-tools</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<groupId>de.muenchen.refarch.tools</groupId> | ||
<artifactId>refarch-pmd</artifactId> | ||
<name>refarch-pmd</name> | ||
<description>Default RefArch configuration for PMD</description> | ||
</project> |
Oops, something went wrong.