pustefix-hangman
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.pustefixframework</groupId>
<artifactId>pustefix-hangman</artifactId>
<version>0.22.22</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>
<parent>
<groupId>org.pustefixframework</groupId>
<artifactId>pustefix-samples</artifactId>
<version>0.22.22</version>
</parent>
<groupId>org.pustefixframework</groupId>
<artifactId>pustefix-hangman</artifactId>
<version>0.22.22</version>
<packaging>war</packaging>
<name>Pustefix Hangman Game</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories>
<repository>
<id>pustefix</id>
<name>Pustefix Maven Repository</name>
<url>http://pustefix-framework.org/repository/maven</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>pustefix</id>
<url>http://pustefix-framework.org/repository/maven/</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>org.pustefixframework</groupId>
<artifactId>pustefix-core</artifactId>
<version>0.22.22</version>
</dependency>
<dependency>
<groupId>org.pustefixframework.webservices</groupId>
<artifactId>pustefix-webservices-jsonws</artifactId>
<version>0.22.22</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.pustefixframework.maven.plugins</groupId>
<artifactId>pustefix-webapp-plugin</artifactId>
<version>0.22.22</version>
<executions>
<execution>
<goals>
<goal>merge-statusmessages</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.pustefixframework.maven.plugins</groupId>
<artifactId>pustefix-statuscode-plugin</artifactId>
<version>0.22.22</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.pustefixframework.maven.plugins</groupId>
<artifactId>pustefix-iwrapper-plugin</artifactId>
<version>0.22.22</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>