Compare commits
26 Commits
Author | SHA1 | Date | |
---|---|---|---|
d2966be0b5 | |||
6f7b8e88e5 | |||
8f3775a955 | |||
32cdd7f441 | |||
89cca22536 | |||
3d666b8325 | |||
0140c2e335 | |||
0791a26915 | |||
b78d4a9181 | |||
|
420aa2435d | ||
|
df286f8720 | ||
|
d191ba950d | ||
|
ce7266b543 | ||
|
4f280b71ad | ||
|
8e455db556 | ||
|
5fe9ac56e6 | ||
|
5c514943e1 | ||
|
b60021c91b | ||
|
8f41d7ec47 | ||
|
3ebc0585e9 | ||
|
938fe701b8 | ||
|
54ae5ef659 | ||
|
514a9ba323 | ||
|
cc2c50ad04 | ||
|
13ae32ed77 | ||
|
3eba379497 |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,2 @@
|
|||||||
|
.idea/*
|
||||||
/target/
|
/target/
|
||||||
|
9
CREDITS
9
CREDITS
@ -1,5 +1,5 @@
|
|||||||
This file partially lists people, that have contributed to
|
This file partially lists people, that have contributed to
|
||||||
the "Nanoboot Checks" project. They are sorted by name.
|
the "OpenEggbert Java Format Checkstyle" project. They are sorted by name.
|
||||||
The fields are: name (N), e-mail (E), web-address (W),
|
The fields are: name (N), e-mail (E), web-address (W),
|
||||||
PGP key ID and fingerprint (P), description (D) and
|
PGP key ID and fingerprint (P), description (D) and
|
||||||
snail-mail address (S).
|
snail-mail address (S).
|
||||||
@ -9,9 +9,8 @@
|
|||||||
----------
|
----------
|
||||||
|
|
||||||
N: Robert Vokac
|
N: Robert Vokac
|
||||||
E: robertvokac@nanoboot.org
|
E: robertvokac@robertvokac.com
|
||||||
W: https://nanoboot.org
|
W: https://robertvokac.com
|
||||||
P: 4096R/E3329055 322B D109 0AA8 C324 EA9C 72F5 693D 30BE E332 9055
|
P: 4096R/C459E1E4 255C 69CC 1D09 CA54 EF0C C9DF FB9C E8E2 0AAD A55F
|
||||||
|
|
||||||
D: Founder
|
D: Founder
|
||||||
S: Czech Republic
|
S: Czech Republic
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# nanoboot-checks
|
# openeggbert-javaformat-checkstyle
|
||||||
|
|
||||||
This is a Java library, which encapsulates Nanoboot Checkstyle XML configuration file.
|
This is a Java library, which encapsulates OpenEggbert Checkstyle XML configuration file.
|
||||||
|
82
pom.xml
82
pom.xml
@ -1,21 +1,22 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!--
|
<!--
|
||||||
nanoboot-checks: Encapsulates Nanoboot Checkstyle XML configuration file.
|
openeggbert-javaformat-checkstyle: Encapsulates OpenEggbert Checkstyle XML configuration file.
|
||||||
Copyright (C) 2018-2022 the original author or authors.
|
Copyright (C) 2018-2025 the original author or authors.
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This program is free software: you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Lesser General Public
|
modify it under the terms of the GNU General Public License
|
||||||
License as published by the Free Software Foundation;
|
as published by the Free Software Foundation, either version 3
|
||||||
version 2.1 of the License only.
|
of the License, or (at your option) any later version.
|
||||||
|
|
||||||
This library is distributed in the hope that it will be useful,
|
This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
Lesser General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU Lesser General Public
|
You should have received a copy of the GNU General Public License
|
||||||
License along with this library; if not, write to the Free Software
|
along with this program. If not, see
|
||||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
<https://www.gnu.org/licenses/> or write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
@ -23,15 +24,16 @@
|
|||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>org.nanoboot.essential</groupId>
|
<groupId>com.openeggbert.essential</groupId>
|
||||||
<artifactId>nanoboot-checks</artifactId>
|
<artifactId>openeggbert-javaformat-checkstyle</artifactId>
|
||||||
<version>0.1.0</version>
|
<version>0.1.2-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>nanoboot-checks</name>
|
<name>openeggbert-javaformat-checkstyle</name>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<javase.version>19</javase.version>
|
<javase.version>21</javase.version>
|
||||||
|
<gpg.skip>true</gpg.skip>
|
||||||
</properties>
|
</properties>
|
||||||
<build>
|
<build>
|
||||||
<resources>
|
<resources>
|
||||||
@ -43,7 +45,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>3.10.1</version>
|
<version>3.13.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>${javase.version}</source>
|
<source>${javase.version}</source>
|
||||||
<target>${javase.version}</target>
|
<target>${javase.version}</target>
|
||||||
@ -53,7 +55,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-source-plugin</artifactId>
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
<version>3.2.1</version>
|
<version>3.3.0</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>attach-sources</id>
|
<id>attach-sources</id>
|
||||||
@ -66,7 +68,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
<version>3.5.0</version>
|
<version>3.6.0</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>attach-javadocs</id>
|
<id>attach-javadocs</id>
|
||||||
@ -89,45 +91,53 @@
|
|||||||
</goals>
|
</goals>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
|
<configuration>
|
||||||
|
<gpgArguments>
|
||||||
|
<argument>--pinentry-mode</argument>
|
||||||
|
<argument>loopback</argument>
|
||||||
|
</gpgArguments>
|
||||||
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>releases</id>
|
<id>openeggbert-releases-repository</id>
|
||||||
<name>nanoboot-releases-repository</name>
|
<name>openeggbert-releases-repository</name>
|
||||||
<url>https://maven.nanoboot.org/releases</url>
|
<url>https://maven.openeggbert.com/releases</url>
|
||||||
</repository>
|
</repository>
|
||||||
<repository>
|
<repository>
|
||||||
<id>snapshots</id>
|
<id>openeggbert-snapshots-repository</id>
|
||||||
<name>nanoboot-snapshots-repository</name>
|
<name>openeggbert-snapshots-repository</name>
|
||||||
<url>https://maven.nanoboot.org/snapshots</url>
|
<url>https://maven.openeggbert.com/snapshots</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
|
|
||||||
<pluginRepositories>
|
<pluginRepositories>
|
||||||
<pluginRepository>
|
<pluginRepository>
|
||||||
<id>releases</id>
|
<id>openeggbert-releases-repository</id>
|
||||||
<name>nanoboot-releases-repository</name>
|
<name>openeggbert-releases-repository</name>
|
||||||
<url>https://maven.nanoboot.org/releases</url>
|
<url>https://maven.openeggbert.com/releases</url>
|
||||||
</pluginRepository>
|
</pluginRepository>
|
||||||
<pluginRepository>
|
<pluginRepository>
|
||||||
<id>snapshots</id>
|
<id>openeggbert-snapshots-repository</id>
|
||||||
<name>nanoboot-snapshots-repository</name>
|
<name>openeggbert-snapshots-repository</name>
|
||||||
<url>https://maven.nanoboot.org/snapshots</url>
|
<url>https://maven.openeggbert.com/snapshots</url>
|
||||||
</pluginRepository>
|
</pluginRepository>
|
||||||
</pluginRepositories>
|
</pluginRepositories>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>nanoboot-releases-repository</id>
|
<id>openeggbert-releases-repository</id>
|
||||||
<url>https://maven.nanoboot.org/releases</url>
|
<url>https://maven.openeggbert.com/releases</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
<snapshotRepository>
|
<snapshotRepository>
|
||||||
<id>nanoboot-snapshots-repository</id>
|
<id>openeggbert-snapshots-repository</id>
|
||||||
<url>https://maven.nanoboot.org/snapshots</url>
|
<url>https://maven.openeggbert.com/snapshots</url>
|
||||||
</snapshotRepository>
|
</snapshotRepository>
|
||||||
</distributionManagement>
|
</distributionManagement>
|
||||||
</project>
|
</project>
|
||||||
|
@ -0,0 +1,32 @@
|
|||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// openeggbert-javaformat-checkstyle: Encapsulates OpenEggbert Checkstyle XML configuration file.
|
||||||
|
// Copyright (C) 2018-2025 the original author or authors.
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or
|
||||||
|
// modify it under the terms of the GNU General Public License
|
||||||
|
// as published by the Free Software Foundation, either version 3
|
||||||
|
// of the License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with this program. If not, see
|
||||||
|
// <https://www.gnu.org/licenses/> or write to the Free Software
|
||||||
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
package com.openeggbert.openeggbertjavaformatcheckstyle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A dummy class
|
||||||
|
* @author robertvokac@robertvokac.org
|
||||||
|
*/
|
||||||
|
public class OpenEggbertJavaFormatCheckstyle {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.out.println("Hello. This is only a dummy class and does nothing.");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,31 +0,0 @@
|
|||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
// nanoboot-checks: Encapsulates Nanoboot Checkstyle XML configuration file.
|
|
||||||
// Copyright (C) 2018-2022 the original author or authors.
|
|
||||||
//
|
|
||||||
// This library is free software; you can redistribute it and/or
|
|
||||||
// modify it under the terms of the GNU Lesser General Public
|
|
||||||
// License as published by the Free Software Foundation;
|
|
||||||
// version 2.1 of the License only.
|
|
||||||
//
|
|
||||||
// This library is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
// Lesser General Public License for more details.
|
|
||||||
//
|
|
||||||
// You should have received a copy of the GNU Lesser General Public
|
|
||||||
// License along with this library; if not, write to the Free Software
|
|
||||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////////
|
|
||||||
package org.nanoboot.nanobootchecks;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A dummy class
|
|
||||||
* @author robertvokac@nanoboot.org
|
|
||||||
*/
|
|
||||||
public class NanobootChecks {
|
|
||||||
public static void main(String[] args) {
|
|
||||||
System.out.println("Hello. This is only a dummy class and does nothing.");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Reference in New Issue
Block a user