webster-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.visallo</groupId>
<artifactId>webster-parent</artifactId>
<version>3.2.0</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.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>org.visallo</groupId>
<artifactId>webster-parent</artifactId>
<version>3.2.0</version>
<packaging>pom</packaging>
<name>Webster: Minimalist Web Framework: Parent</name>
<inceptionYear>2014</inceptionYear>
<description>
Minimalist web framework, that has an express.js like API.
</description>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>scm:git:git@github.com:visallo/webster.git</url>
<connection>scm:git:git@github.com:visallo/webster.git</connection>
<developerConnection>scm:git:git@github.com:visallo/webster.git</developerConnection>
<tag>webster-3.2.0</tag>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/visallo/webster/issues</url>
</issueManagement>
<developers>
<developer>
<name>Jeff Kunkle</name>
<url>https://github.com/kunklejr</url>
<timezone>-5</timezone>
<email>jeff.kunkle@visallo.com</email>
</developer>
<developer>
<name>Joe Ferner</name>
<url>https://github.com/joeferner</url>
<timezone>-5</timezone>
<email>joe.ferner@visallo.com</email>
</developer>
</developers>
<properties>
<java.compiler.showWarnings>true</java.compiler.showWarnings>
<java.source.version>1.8</java.source.version>
<java.target.version>1.8</java.target.version>
<maven.plugin.scm.version>1.9.5</maven.plugin.scm.version>
<maven.plugin.compiler.version>3.7.0</maven.plugin.compiler.version>
<maven.plugin.source.version>3.0.1</maven.plugin.source.version>
<maven.plugin.javadoc.version>3.0.0</maven.plugin.javadoc.version>
<maven.plugin.release.version>2.5.3</maven.plugin.release.version>
<maven.plugin.gpg.version>1.6</maven.plugin.gpg.version>
<socket-io.version>1.0.6</socket-io.version>
<!-- provided -->
<websocket-api.version>1.1</websocket-api.version>
<servlet-api.version>3.1.0</servlet-api.version>
<slf4j.version>1.7.5</slf4j.version>
<!-- test -->
<jetty.version>9.4.13.v20181111</jetty.version>
<junit.version>4.12</junit.version>
<mockito.version>2.18.3</mockito.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.codeminders.socketio</groupId>
<artifactId>socket-io</artifactId>
<version>${socket-io.version}</version>
</dependency>
<!-- provided -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${servlet-api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.websocket</groupId>
<artifactId>javax.websocket-api</artifactId>
<version>${websocket-api.version}</version>
<scope>provided</scope>
</dependency>
<!-- test -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>javax-websocket-server-impl</artifactId>
<version>${jetty.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>webster</module>
<module>webster-socketio</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>${maven.plugin.scm.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.plugin.compiler.version}</version>
<configuration>
<source>${java.source.version}</source>
<target>${java.target.version}</target>
<showWarnings>${java.compiler.showWarnings}</showWarnings>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven.plugin.source.version}</version>
<executions>
<execution>
<id>source-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.plugin.javadoc.version}</version>
<executions>
<execution>
<id>javadocs-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven.plugin.release.version}</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<arguments>-Psonatype-oss-release</arguments>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-api</artifactId>
<version>${maven.plugin.scm.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>${maven.plugin.scm.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-tasks</id>
<activation>
<!-- mvn release:perform sets this to true -->
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven.plugin.gpg.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>