mada-style-gradle
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dk.mada.style</groupId> <artifactId>mada-style-gradle</artifactId> <version>1.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>dk.mada.style</groupId> <artifactId>mada-style-gradle</artifactId> <version>1.1.0</version> <name>Plugin for enforcing java dk.mada coding style</name> <description>A plugin that sets up null-checking and code formatting style for dk.mada development.</description> <url>https://github.com/jskov/mada-style-gradle</url> <licenses> <license> <name>Licensed under the EUPL-1.2-or-later</name> <url>https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/2020-03/EUPL-1.2%20EN.txt</url> </license> </licenses> <developers> <developer> <id>jskov</id> <name>Jesper Skov</name> <email>jskov@mada.dk</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/jskov/mada-style-gradle.git</connection> <developerConnection>scm:git:ssh://github.com:jskov/mada-style-gradle.git</developerConnection> <url>https://github.com/jskov/mada-style-gradle/</url> </scm> <dependencies> <dependency> <groupId>net.ltgt.gradle</groupId> <artifactId>gradle-errorprone-plugin</artifactId> <version>4.1.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.sonarsource.scanner.gradle</groupId> <artifactId>sonarqube-gradle-plugin</artifactId> <version>6.0.1.5171</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-plugin-gradle</artifactId> <version>7.0.2</version> <scope>runtime</scope> </dependency> </dependencies> </project>