★ wanayoo — archive 1999 https://github.com/javaee-samples/javaee7-samples/blob/master/json/pom.xmlNouvelle recherche | Portail wanayoo
Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
30 lines (25 sloc) 1011 Bytes
<?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.javaee7</groupId>
<artifactId>samples-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>json</artifactId>
<packaging>pom</packaging>
<name>Java EE 7 Sample: json</name>
<modules>
<module>object-builder</module>
<module>object-reader</module>
<module>streaming-generate</module>
<module>streaming-parser</module>
</modules>
<dependencies>
<dependency>
<groupId>org.javaee7</groupId>
<artifactId>test-utils</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>