<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> <artifactId>org.kevoree.library.java.javaNode</artifactId> <name>Kevoree :: Library :: Java :: JavaNode</name> <version>5.3.1</version> <parent> <artifactId>org.kevoree.library.java.root</artifactId> <groupId>org.kevoree.library.java</groupId> <version>5.3.1</version> <relativePath>../pom.xml</relativePath> </parent> <dependencies> <dependency> <groupId>org.kevoree</groupId> <artifactId>org.kevoree.api</artifactId> <version>${kevoree.version}</version> </dependency> <!-- test dependency --> <dependency> <groupId>org.kevoree</groupId> <artifactId>org.kevoree.kevscript</artifactId> <version>${kevoree.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.kevoree.tools</groupId> <artifactId>org.kevoree.tools.test</artifactId> <version>${kevoree.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.4</version> <configuration> <verbose>false</verbose> <addSvnKeyWords>true</addSvnKeyWords> </configuration> <executions> <execution> <id>first</id> <goals> <goal>update-file-header</goal> </goals> <phase>process-sources</phase> <configuration> <licenseName>lgpl_v3</licenseName> <organizationName>org.kevoree</organizationName> <inceptionYear>2013</inceptionYear> <includes> <include>*.java</include> <include>*.kt</include> <include>*.scala</include> </includes> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.kevoree.library.java</groupId> <artifactId>org.kevoree.library.java.javaNode</artifactId> <version>5.3.1</version> </dependency>
org.kevoree.library.java:org.kevoree.library.java.javaNode:5.3.1