gwt-jsonp-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.treblereel.gwt.gwtproject.jsonp</groupId>
<artifactId>gwt-jsonp-parent</artifactId>
<version>dev</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>org.treblereel.gwt.gwtproject</groupId>
<artifactId>gwt-parent</artifactId>
<version>dev</version>
</parent>
<groupId>org.treblereel.gwt.gwtproject.jsonp</groupId>
<artifactId>gwt-jsonp-parent</artifactId>
<version>dev</version>
<packaging>pom</packaging>
<name>GWT JSONP Parent</name>
<description>Parent POM containing the gwt-jsonp module and the test modules (gwt2- and j2cl-tests)</description>
<url>https://github.com/gwtproject/gwt-jsonp</url>
<organization>
<name>The GWT Project Authors</name>
<url>https://github.com/gwtproject</url>
</organization>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>The GWT Authors</name>
<organization>The GWT Project Authors</organization>
<url>https://github.com/gwtproject</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/gwtproject/gwt-jsonp.git</connection>
<developerConnection>scm:git:ssh://github.com/gwtproject/gwt-jsonp.git</developerConnection>
<url>https://github.com/gwtproject/gwt-jsonp/tree/master</url>
</scm>
<inceptionYear>2019</inceptionYear>
<modules>
<module>gwt-jsonp</module>
<module>gwt-jsonp-gwt2-tests</module>
<module>gwt-jsonp-j2cl-tests</module>
<module>gwt-jsonp-test-service</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<!-- <plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<configuration>
<stopPort>9998</stopPort>
<stopKey>STOP</stopKey>
<httpConnector>
<port>9999</port>
</httpConnector>
<webApp>
<contextPath>/</contextPath>
</webApp>
</configuration>
</plugin>-->
</plugins>
</pluginManagement>
</build>
<profiles>
<!-- release profile to create sources, javadoc, and sign all artifacts before uploading -->
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<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-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- see http://central.sonatype.org/pages/working-with-pgp-signatures.html for more detail -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<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-deploy-plugin</artifactId>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>