dotnet-maven-plugin
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.eitco.cicd</groupId> <artifactId>dotnet-maven-plugin</artifactId> <version>0.0.6</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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>de.eitco.cicd</groupId> <artifactId>eitco-oss-parent</artifactId> <version>0.0.15</version> </parent> <groupId>de.eitco.cicd</groupId> <artifactId>dotnet-maven-plugin</artifactId> <version>0.0.6</version> <packaging>maven-plugin</packaging> <description> a maven plugin providing a build lifecycle for dotnet </description> <developers> <developer> <name>Jan Schwarz</name> <email>jschwarz@eitco.de</email> </developer> </developers> <scm> <url>https://github.com/eitco/dotnet-maven-plugin.git</url> <connection>scm:git:https://github.com/eitco/dotnet-maven-plugin.git</connection> <developerConnection>scm:git:https://github.com/eitco/dotnet-maven-plugin.git</developerConnection> <tag>0.0.6</tag> </scm> <properties> <maven-clean-plugin.version>3.3.2</maven-clean-plugin.version> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> <version>3.8.1</version> </dependency> <dependency> <groupId>net.lingala.zip4j</groupId> <artifactId>zip4j</artifactId> <version>2.11.5</version> </dependency> <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>${maven-clean-plugin.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <goals>deploy site site:stage scm-publish:publish-scm</goals> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> </plugin> <plugin> <artifactId>maven-invoker-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-publish-plugin</artifactId> </plugin> </plugins> </build> <reporting> <excludeDefaults>true</excludeDefaults> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-report-plugin</artifactId> </plugin> </plugins> </reporting> <distributionManagement> <site> <id>github</id> <url>scm:git:https://github.com/eitco/eitco.github.io.git</url> </site> </distributionManagement> </project>