wordpress
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.vx68k.wordpress</groupId>
<artifactId>wordpress</artifactId>
<version>4.3.1-2.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
pom.xml - project object model for wordpress
Copyright (C) 2015 Nishimura Software Studio
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 3 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>.
-->
<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>
<groupId>org.vx68k.wordpress</groupId>
<artifactId>wordpress</artifactId>
<packaging>war</packaging>
<name>WordPress for Java EE</name>
<version>4.3.1-2.0</version>
<description>This package contains WordPress as a Java EE web application.</description>
<url>https://bitbucket.org/kazssym/wordpress/wiki/</url>
<issueManagement>
<system>Bitbucket</system>
<url>https://bitbucket.org/kazssym/wordpress/issues</url>
</issueManagement>
<inceptionYear>2003</inceptionYear>
<developers>
<developer>
<name>WordPress Core Development Team and contributers</name>
<roles>
<role>Original authors</role>
</roles>
</developer>
<developer>
<name>Kaz Nishimura</name>
<email>kazssym@vx68k.org</email>
<roles>
<role>Packager</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>GNU General Public License v3.0 or later</name>
<url>http://www.gnu.org/licenses/gpl.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:hg:https://bitbucket.org/kazssym/wordpress</connection>
<developerConnection>scm:hg:https://bitbucket.org/kazssym/wordpress</developerConnection>
<tag>release/4.3.1-2.0</tag>
<url>https://bitbucket.org/kazssym/wordpress/src</url>
</scm>
<organization>
<name>WordPress Core Development Team and contributers</name>
</organization>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<webXml>src/main/configurations/web.xml</webXml>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>ossrh</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.5</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.vx68k.quercus</groupId>
<artifactId>quercus</artifactId>
<version>4.0.42-MOD3</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>