opencms-cmsshell-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.silpion.opencms.maven.plugins</groupId> <artifactId>opencms-cmsshell-maven-plugin</artifactId> <version>10_5_4.0.2</version> </dependency>
<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>de.silpion.opencms.maven.plugins</groupId> <artifactId>opencms-cmsshell-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <version>10_5_4.0.2</version> <name>OpenCms CmsShell Maven Plugin</name> <description>Maven plugin to access OpenCms via OpenCmsShell.</description> <url>https://www.silpion.de/</url> <licenses> <license> <name>GNU Lesser General Public License</name> <url>http://www.gnu.org/licenses/lgpl-3.0-standalone.html</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>SILPION IT-Solutions GmbH</name> <url>https://www.silpion.de/</url> </organization> <scm> <connection>scm:git:git://github.com/silpion/opencms-maven-plugin.git</connection> <url>https://github.com/silpion/opencms-cmsshell-maven-plugin</url> </scm> <developers> <developer> <id>brandt@silpion.de</id> <name>Lars Brandt</name> <email>brandt@silpion.de</email> <organization>SILPION IT-Solutions GmbH</organization> <organizationUrl>https://www.silpion.de/</organizationUrl> </developer> <developer> <id>kucharczyk@silpion.de</id> <name>Martin Kucharczyk</name> <email>kucharczyk@silpion.de</email> <organization>SILPION IT-Solutions GmbH</organization> <organizationUrl>https://www.silpion.de/</organizationUrl> </developer> <developer> <id>schrader@silpion.de</id> <name>Stephan Schrader</name> <email>schrader@silpion.de</email> <organization>SILPION IT-Solutions GmbH</organization> <organizationUrl>https://www.silpion.de/</organizationUrl> </developer> <developer> <id>wussmann@silpion.de</id> <name>Kenneth Wußmann</name> <email>wussmann@silpion.de</email> <organization>SILPION IT-Solutions GmbH</organization> <organizationUrl>https://www.silpion.de/</organizationUrl> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> <mavenVersion>3.3.9</mavenVersion> <version.org.opencms.opencms-core>10.5.4</version.org.opencms.opencms-core> </properties> <repositories> <repository> <id>unmirrored-0</id> <url>http://maven.vaadin.com/vaadin-addons</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>2.2.1</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-artifact-resolver</artifactId> <version>1.0</version> </dependency> <!-- dependencies to annotations --> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.10</version> </dependency> <dependency> <groupId>org.vaadin.addons</groupId> <artifactId>filteringtable</artifactId> <version>0.9.15.v7</version> </dependency> <!-- All we need for OpenCms --> <dependency> <groupId>org.opencms</groupId> <artifactId>opencms-core</artifactId> <version>${version.org.opencms.opencms-core}</version> <exclusions> <exclusion> <groupId>com.google.gwt</groupId> <artifactId>gwt-dev</artifactId> </exclusion> <exclusion> <groupId>com.vaadin</groupId> <artifactId>vaadin-client-compiler</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.opencms</groupId> <artifactId>org.opencms.workplace</artifactId> <version>${version.org.opencms.opencms-core}</version> </dependency> <dependency> <groupId>cryptix-jce</groupId> <artifactId>cryptix-jce-provider</artifactId> <version>20050328</version> </dependency> <dependency> <groupId>org.alfresco</groupId> <artifactId>alfresco-jlan-embed</artifactId> <version>5.0.b</version> </dependency> <dependency> <groupId>postgresql</groupId> <artifactId>postgresql</artifactId> <version>9.0-801.jdbc4</version> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.2</version> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <!-- https://mvnrepository.com/artifact/org.codehaus.mojo/license-maven-plugin --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.16</version> <configuration> <failOnMissingHeader>true</failOnMissingHeader> <dryRun>false</dryRun> <licenseName>lgpl_v3</licenseName> <inceptionYear>2017</inceptionYear> <organizationName>Silpion IT-Solutions GmbH (https://www.silpion.de/)</organizationName> <roots> <root>${project.build.sourceDirectory}</root> <root>${project.build.testSourceDirectory}</root> </roots> </configuration> <executions> <execution> <id>check-file-header</id> <phase>process-sources</phase> <goals> <goal>check-file-header</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.7</version> <configuration> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> </configuration> <reportSets> <reportSet> <reports> <report>dependencies</report> <report>project-team</report> <report>license</report> <report>plugin-management</report> <report>plugins</report> <report>summary</report> <report>dependency-info</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <profiles> <profile> <id>deploy</id> <activation> <property> <name>!develop</name> </property> </activation> <build> <plugins> <!-- https://mvnrepository.com/artifact/org.sonatype.plugins/nexus-staging-maven-plugin --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-gpg-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> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <doclint>none</doclint> </configuration> </execution> </executions> </plugin> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-source-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-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </project>