mmbase-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mmbase.maven</groupId> <artifactId>mmbase-maven-plugin</artifactId> <version>2.0.1</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.mmbase.maven</groupId> <artifactId>mmbase-maven-plugin</artifactId> <name>MMBase Maven Plugin</name> <version>2.0.1</version> <packaging>maven-plugin</packaging> <description>This provides a maven plugin for mmbase builds. The most important goal is 'create-index-files' which automaticly creates 'INDEX' files which are understood by the mmbase resource loader.</description> <url>https://github.com/mmbase/mmbase-maven-plugin</url> <developers> <developer> <id>mihxil</id> <name>Michiel Meeuwissen</name> <email>michiel.meeuwissen+github@gmail.com</email> <url>https://www.meeuw.org</url> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>Europe/Amsterdam</timezone> </developer> </developers> <licenses> <license> <name>Mozilla 2.0</name> <url>https://www.mozilla.org/en-US/MPL/2.0/</url> </license> </licenses> <ciManagement> <system>Travis CI</system> <url>https://travis-ci.org/mmbase/mmbase-maven-plugin</url> </ciManagement> <scm> <connection>scm:git:git://git@github.com/mmbase/mmbase-maven-plugin.git</connection> <developerConnection>scm:git:git@github.com:mmbase/mmbase-maven-plugin.git</developerConnection> <url>https://github.com/mmbase/mmbase-maven-plugin</url> <tag>mmbase-maven-plugin-2.0.1</tag> </scm> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>classworlds</groupId> <artifactId>classworlds</artifactId> <version>1.1-alpha-2</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.5.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.4</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>mmbase-ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>mmbase-ossrh-release</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <profiles> <profile> <id>deploy</id> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>mmbase-ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <doclint>none</doclint> <failOnError>false</failOnError> <notimestamp>true</notimestamp> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>