ecocode-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.ecocode</groupId> <artifactId>ecocode-parent</artifactId> <version>1.6.5</version> </dependency>
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>io.ecocode</groupId> <artifactId>ecocode-parent</artifactId> <version>1.6.5</version> <packaging>pom</packaging> <name>ecoCode Sonar Plugins Project</name> <description>Provides rules to reduce the environmental footprint of your programs</description> <url>https://github.com/green-code-initiative/ecocode</url> <inceptionYear>2023</inceptionYear> <organization> <name>green-code-initiative</name> <url>https://github.com/green-code-initiative</url> </organization> <licenses> <license> <name>GPL v3</name> <url>https://www.gnu.org/licenses/gpl-3.0.en.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <!-- Mandatory information to be able to publish to Maven Central: https://central.sonatype.org/publish/requirements/#developer-information --> <developer> <name>Gilles Grousset</name> <email>zippy1978@users.noreply.github.com</email> <organization>green-code-initiative</organization> <organizationUrl>https://github.com/green-code-initiative</organizationUrl> </developer> <developer> <name>Maxime Malgorn</name> <email>utarwyn@users.noreply.github.com</email> <organization>green-code-initiative</organization> <organizationUrl>https://github.com/green-code-initiative</organizationUrl> </developer> <developer> <name>Geoffrey Lalloué</name> <email>glalloue@users.noreply.github.com</email> <organization>green-code-initiative</organization> <organizationUrl>https://github.com/green-code-initiative</organizationUrl> </developer> <developer> <name>David DE CARVALHO</name> <email>dedece35@users.noreply.github.com</email> <organization>green-code-initiative</organization> <organizationUrl>https://github.com/green-code-initiative</organizationUrl> </developer> <developer> <name>Olivier Le Goaër</name> <email>olegoaer@users.noreply.github.com</email> <organization>green-code-initiative</organization> <organizationUrl>https://github.com/green-code-initiative</organizationUrl> </developer> <developer> <name>Julien Hertout</name> <email>jhertout@users.noreply.github.com</email> <organization>green-code-initiative</organization> <organizationUrl>https://github.com/green-code-initiative</organizationUrl> </developer> <developer> <name>Jules Delecour</name> <email>jules-delecour-dav@users.noreply.github.com</email> <organization>green-code-initiative</organization> <organizationUrl>https://github.com/green-code-initiative</organizationUrl> </developer> <developer> <name>DUBOIS Maxime</name> <email>mdubois81@users.noreply.github.com</email> <organization>green-code-initiative</organization> <organizationUrl>https://github.com/green-code-initiative</organizationUrl> </developer> </developers> <modules> <module>ecocode-rules-specifications</module> </modules> <scm> <connection>scm:git:https://github.com/green-code-initiative/ecocode</connection> <developerConnection>scm:git:https://github.com/green-code-initiative/ecocode</developerConnection> <url>https://github.com/green-code-initiative/ecocode</url> <tag>HEAD</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/green-code-initiative/ecocode/issues</url> </issueManagement> <properties> <!-- Default version when disabling Maven `maven-git-versioning-extension` extension cf. https://github.com/qoomon/maven-git-versioning-extension#intellij---multi-modules-projects --> <revision>current-SNAPSHOT</revision> <!-- Helps ensure build reproducibility (cf. https://maven.apache.org/guides/mini/guide-reproducible-builds.html) --> <!--suppress UnresolvedMavenProperty --> <project.build.outputTimestamp>${git.commit.timestamp.datetime}</project.build.outputTimestamp> <java.version>11</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <encoding>UTF-8</encoding> <project.build.sourceEncoding>${encoding}</project.build.sourceEncoding> <project.reporting.outputEncoding>${encoding}</project.reporting.outputEncoding> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>me.qoomon</groupId> <artifactId>maven-git-versioning-extension</artifactId> <version>9.8.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.7.1</version> </plugin> <plugin> <groupId>com.github.johnpoth</groupId> <artifactId>jshell-maven-plugin</artifactId> <version>1.4</version> <dependencies> <dependency> <groupId>jakarta.json</groupId> <artifactId>jakarta.json-api</artifactId> <version>2.1.3</version> </dependency> <dependency> <groupId>org.glassfish</groupId> <artifactId>jakarta.json</artifactId> <version>2.0.1</version> <classifier>module</classifier> </dependency> </dependencies> </plugin> <plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <version>3.0.0</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <!-- Do not specify version upper maven wrapper (cf. ./.mvn/wrapper/maven-wrapper.properties#line=19 --> <version>3.8.5</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <!-- <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.1</version> <configuration> <properties> <owner>Green Code Initiative</owner> <email>https://www.ecocode.io</email> </properties> <licenseSets> <licenseSet> <header>com/mycila/maven/plugin/license/templates/GPL-3.txt</header> <includes> <include>**/*.java</include> </includes> </licenseSet> </licenseSets> </configuration> <executions> <execution> <id>validate</id> <goals> <goal>check</goal> </goals> <phase>validate</phase> </execution> </executions> </plugin> --> </plugins> </build> <profiles> <profile> <id>maven-central-publishing</id> <!-- For publishing in Maven Central. For more information: - https://central.sonatype.org/publish/publish-guide/#deployment - https://central.sonatype.org/publish/release/#login-into-ossrh --> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <build> <plugins> <plugin><!-- For publishing in Maven Central, see: https://central.sonatype.org/publish/publish-maven/#distribution-management-and-authentication --> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <!-- if true : automatic publish / if false : manual publish on Nexus GUI ("staging repository" tab) --> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin><!-- For publishing in Maven Central, GPG key must be published to one of following servers: - keyserver.ubuntu.com - keys.openpgp.org - pgp.mit.edu For more informatino: https://central.sonatype.org/publish/requirements/gpg/#distributing-your-public-key --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>