ygg-client-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>eu.limetri.ygg</groupId> <artifactId>ygg-client-web</artifactId> <version>0.28</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> <artifactId>ygg-parent</artifactId> <groupId>eu.limetri.ygg</groupId> <version>0.28</version> </parent> <groupId>eu.limetri.ygg</groupId> <artifactId>ygg-client-web</artifactId> <version>0.28</version> <packaging>war</packaging> <name>ygg-client-web</name> <properties> <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.jolokia</groupId> <artifactId>jolokia-core</artifactId> <version>${jolokia.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ygg-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ygg-engine-simple</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ygg-registry-jdbc</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jboss-support</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>eu.limetri.ygg</groupId> <artifactId>ygg-auth-keycloak</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ygg-server</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>javax</groupId> <artifactId>javaee-web-api</artifactId> <version>7.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.restlet.jee</groupId> <artifactId>org.restlet.ext.spring</artifactId> <version>${restlet.version}</version> <exclusions> <exclusion> <artifactId>spring-asm</artifactId> <groupId>org.springframework</groupId> </exclusion> </exclusions> </dependency> <dependency> <artifactId>spring-beans</artifactId> <groupId>org.springframework</groupId> <type>jar</type> <version>${spring.version}</version> </dependency> <dependency> <artifactId>spring-context</artifactId> <groupId>org.springframework</groupId> <type>jar</type> <version>${spring.version}</version> </dependency> <dependency> <artifactId>spring-web</artifactId> <groupId>org.springframework</groupId> <type>jar</type> <version>${spring.version}</version> </dependency> <dependency> <artifactId>spring-expression</artifactId> <groupId>org.springframework</groupId> <type>jar</type> <version>${spring.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> <compilerArguments> <endorseddirs>${endorsed.dir}</endorseddirs> </compilerArguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.3</version> <configuration> <failOnMissingWebXml>false</failOnMissingWebXml> <webResources> <resource> <!-- this is relative to the pom.xml directory --> <directory>src/main/webapp</directory> <includes> <include>WEB-INF/web.xml</include> <!--<include>WEB-INF/keycloak.json</include>--> </includes> <filtering>true</filtering> </resource> <resource> <directory>src/main/webapp</directory> <excludes> <exclude>WEB-INF/web.xml</exclude> <!--<exclude>WEB-INF/keycloak.json</exclude>--> </excludes> <filtering>false</filtering> </resource> </webResources> <warName>ygg</warName> </configuration> </plugin> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>9.2.2.v20140.26-SNAPSHOT</version> <configuration> <httpConnector> <port>8090</port> </httpConnector> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.6</version> <executions> <execution> <phase>validate</phase> <goals> <goal>copy</goal> </goals> <configuration> <outputDirectory>${endorsed.dir}</outputDirectory> <silent>true</silent> <artifactItems> <artifactItem> <groupId>javax</groupId> <artifactId>javaee-endorsed-api</artifactId> <version>7.0</version> <type>jar</type> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>