diff --git a/.checkstyle b/.checkstyle index 4f63892..6af492e 100644 --- a/.checkstyle +++ b/.checkstyle @@ -1,7 +1,7 @@ - + 4.0.0 @@ -20,10 +22,15 @@ SPDX-License-Identifier: LGPL-2.0-or-later 4.0.1-SNAPSHOT jar - com.github.javabdd + JavaBDD https://github.com/com-github-javabdd/com.github.javabdd JavaBDD: A Java library for Binary Decision Diagrams (BDDs) + + 11 + UTF-8 + + LGPL-2.0-or-later @@ -31,6 +38,10 @@ SPDX-License-Identifier: LGPL-2.0-or-later + + ${project.groupId} + + dhendriks @@ -40,12 +51,6 @@ SPDX-License-Identifier: LGPL-2.0-or-later - - - UTF-8 - - - @@ -53,14 +58,52 @@ SPDX-License-Identifier: LGPL-2.0-or-later maven-compiler-plugin 3.10.1 - UTF-8 + ${project.build.sourceEncoding} true true - 11 + ${java.version} true true - 11 - 11 + ${java.version} + ${java.version} + + + + + org.apache.felix + maven-bundle-plugin + 5.1.8 + true + + + bundle-manifest + process-classes + + manifest + + + + + + ${project.artifactId} + lazy + JavaSE-${java.version} + + + <_noee>true + + true + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + @@ -81,23 +124,19 @@ SPDX-License-Identifier: LGPL-2.0-or-later org.apache.maven.plugins maven-release-plugin - 3.0.0-M7 + 3.0.0 true false forked-path - - -Dgpg.passphrase=${gpg.passphrase} - + -Dgpg.passphrase=${gpg.passphrase} @{project.version} org.apache.maven.scm - - maven-scm-provider-gitexe - - 2.0.0-M3 + maven-scm-provider-gitexe + 2.0.0 @@ -174,25 +213,17 @@ SPDX-License-Identifier: LGPL-2.0-or-later ossrh - - https://oss.sonatype.org/content/repositories/snapshots - + https://oss.sonatype.org/content/repositories/snapshots ossrh - - https://oss.sonatype.org/service/local/staging/deploy/maven2/ - + https://oss.sonatype.org/service/local/staging/deploy/maven2/ - - scm:git:git://github.com/dexecutor/dependent-tasks-executor.git - - - scm:git:git@github.com:dexecutor/dexecutor.git - + scm:git:git://github.com/dexecutor/dependent-tasks-executor.git + scm:git:git@github.com:dexecutor/dexecutor.git https://github.com/com-github-javabdd/com.github.javabdd HEAD diff --git a/release-perform b/release-perform index 2acfe0e..82d6200 100644 --- a/release-perform +++ b/release-perform @@ -1,7 +1,7 @@ #!/usr/bin/bash ############################################################################## -# Copyright (c) 2020, 2022 John Whaley and others +# Copyright (c) 2020-2023 John Whaley and others # # See the CONTRIBUTORS file(s) distributed with this work for additional # information regarding copyright ownership. diff --git a/release-prepare b/release-prepare index a27899f..c1b98d3 100644 --- a/release-prepare +++ b/release-prepare @@ -1,7 +1,7 @@ #!/usr/bin/bash ############################################################################## -# Copyright (c) 2020, 2022 John Whaley and others +# Copyright (c) 2020-2023 John Whaley and others # # See the CONTRIBUTORS file(s) distributed with this work for additional # information regarding copyright ownership. diff --git a/src/main/java/com/github/javabdd/BDD.java b/src/main/java/com/github/javabdd/BDD.java index 17c7ac1..6e11ffb 100644 --- a/src/main/java/com/github/javabdd/BDD.java +++ b/src/main/java/com/github/javabdd/BDD.java @@ -1,5 +1,5 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright (c) 2003, 2022 John Whaley and others +// Copyright (c) 2003-2023 John Whaley and others // // See the CONTRIBUTORS file(s) distributed with this work for additional // information regarding copyright ownership. diff --git a/src/main/java/com/github/javabdd/BDDBitVector.java b/src/main/java/com/github/javabdd/BDDBitVector.java index 9d611f7..838766a 100644 --- a/src/main/java/com/github/javabdd/BDDBitVector.java +++ b/src/main/java/com/github/javabdd/BDDBitVector.java @@ -1,5 +1,5 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright (c) 2003, 2022 John Whaley and others +// Copyright (c) 2003-2023 John Whaley and others // // See the CONTRIBUTORS file(s) distributed with this work for additional // information regarding copyright ownership. diff --git a/src/main/java/com/github/javabdd/BDDDomain.java b/src/main/java/com/github/javabdd/BDDDomain.java index b92dc9c..0bb7176 100644 --- a/src/main/java/com/github/javabdd/BDDDomain.java +++ b/src/main/java/com/github/javabdd/BDDDomain.java @@ -1,5 +1,5 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright (c) 2003, 2022 John Whaley and others +// Copyright (c) 2003-2023 John Whaley and others // // See the CONTRIBUTORS file(s) distributed with this work for additional // information regarding copyright ownership. diff --git a/src/main/java/com/github/javabdd/BDDException.java b/src/main/java/com/github/javabdd/BDDException.java index 66e2173..08202b9 100644 --- a/src/main/java/com/github/javabdd/BDDException.java +++ b/src/main/java/com/github/javabdd/BDDException.java @@ -1,5 +1,5 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright (c) 2003, 2022 John Whaley and others +// Copyright (c) 2003-2023 John Whaley and others // // See the CONTRIBUTORS file(s) distributed with this work for additional // information regarding copyright ownership. diff --git a/src/main/java/com/github/javabdd/BDDFactory.java b/src/main/java/com/github/javabdd/BDDFactory.java index 6c904fb..a311712 100644 --- a/src/main/java/com/github/javabdd/BDDFactory.java +++ b/src/main/java/com/github/javabdd/BDDFactory.java @@ -1,5 +1,5 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright (c) 2003, 2022 John Whaley and others +// Copyright (c) 2003-2023 John Whaley and others // // See the CONTRIBUTORS file(s) distributed with this work for additional // information regarding copyright ownership. diff --git a/src/main/java/com/github/javabdd/BDDFactoryIntImpl.java b/src/main/java/com/github/javabdd/BDDFactoryIntImpl.java index 16e1b51..b19f978 100644 --- a/src/main/java/com/github/javabdd/BDDFactoryIntImpl.java +++ b/src/main/java/com/github/javabdd/BDDFactoryIntImpl.java @@ -1,5 +1,5 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright (c) 2004, 2022 John Whaley and others +// Copyright (c) 2004-2023 John Whaley and others // // See the CONTRIBUTORS file(s) distributed with this work for additional // information regarding copyright ownership. diff --git a/src/main/java/com/github/javabdd/BDDPairing.java b/src/main/java/com/github/javabdd/BDDPairing.java index 2af8799..2c3eaaf 100644 --- a/src/main/java/com/github/javabdd/BDDPairing.java +++ b/src/main/java/com/github/javabdd/BDDPairing.java @@ -1,5 +1,5 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright (c) 2003, 2022 John Whaley and others +// Copyright (c) 2003-2023 John Whaley and others // // See the CONTRIBUTORS file(s) distributed with this work for additional // information regarding copyright ownership. diff --git a/src/main/java/com/github/javabdd/BDDVarSet.java b/src/main/java/com/github/javabdd/BDDVarSet.java index 1e5e451..e8d8d05 100644 --- a/src/main/java/com/github/javabdd/BDDVarSet.java +++ b/src/main/java/com/github/javabdd/BDDVarSet.java @@ -1,5 +1,5 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright (c) 2004, 2022 John Whaley and others +// Copyright (c) 2004-2023 John Whaley and others // // See the CONTRIBUTORS file(s) distributed with this work for additional // information regarding copyright ownership. diff --git a/src/main/java/com/github/javabdd/BitString.java b/src/main/java/com/github/javabdd/BitString.java index 80bbf49..21e731a 100644 --- a/src/main/java/com/github/javabdd/BitString.java +++ b/src/main/java/com/github/javabdd/BitString.java @@ -1,5 +1,5 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright (c) 2001, 2022 John Whaley and others +// Copyright (c) 2001-2023 John Whaley and others // // See the CONTRIBUTORS file(s) distributed with this work for additional // information regarding copyright ownership. diff --git a/src/main/java/com/github/javabdd/FindBestOrder.java b/src/main/java/com/github/javabdd/FindBestOrder.java index ad77d6d..0573226 100644 --- a/src/main/java/com/github/javabdd/FindBestOrder.java +++ b/src/main/java/com/github/javabdd/FindBestOrder.java @@ -1,5 +1,5 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright (c) 2004, 2022 John Whaley and others +// Copyright (c) 2004-2023 John Whaley and others // // See the CONTRIBUTORS file(s) distributed with this work for additional // information regarding copyright ownership. diff --git a/src/main/java/com/github/javabdd/JFactory.java b/src/main/java/com/github/javabdd/JFactory.java index 3801b17..abf50e3 100644 --- a/src/main/java/com/github/javabdd/JFactory.java +++ b/src/main/java/com/github/javabdd/JFactory.java @@ -1,5 +1,5 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright (c) 2003, 2022 John Whaley and others +// Copyright (c) 2003-2023 John Whaley and others // // See the CONTRIBUTORS file(s) distributed with this work for additional // information regarding copyright ownership. diff --git a/src/main/java/com/github/javabdd/TryVarOrder.java b/src/main/java/com/github/javabdd/TryVarOrder.java index 8021a0b..33d497d 100644 --- a/src/main/java/com/github/javabdd/TryVarOrder.java +++ b/src/main/java/com/github/javabdd/TryVarOrder.java @@ -1,5 +1,5 @@ ////////////////////////////////////////////////////////////////////////////// -// Copyright (c) 2004, 2022 John Whaley and others +// Copyright (c) 2004-2023 John Whaley and others // // See the CONTRIBUTORS file(s) distributed with this work for additional // information regarding copyright ownership.