r.xapi-core-ui-html.0.5.source-code.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xapi-core-ui-html Show documentation
Show all versions of xapi-core-ui-html Show documentation
The core API for generating html from data models.
The newest version!
<?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>net.wetheinter</groupId> <artifactId>xapi-core-ui-parent</artifactId> <version>0.5</version> </parent> <artifactId>xapi-core-ui-html</artifactId> <packaging>jar</packaging> <name>XApi - Core Html utils</name> <url>WeTheInter.net</url> <description> The core API for generating html from data models. </description> <dependencies> <dependency> <groupId>net.wetheinter</groupId> <artifactId>xapi-core-ui-autoui</artifactId> </dependency> <dependency> <groupId>net.wetheinter</groupId> <artifactId>xapi-core-collect</artifactId> </dependency> <dependency> <groupId>${gwt.groupId}</groupId> <artifactId>gwt-user</artifactId> <optional>true</optional> </dependency> <!-- Testing dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>net.wetheinter</groupId> <artifactId>xapi-jre-inject</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>net.wetheinter</groupId> <artifactId>xapi-core-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>net.wetheinter</groupId> <artifactId>xapi-core-ui-autoui</artifactId> <version>${project.version}</version><!--$NO-MVN-MAN-VER$--> <type>test-jar</type> <scope>test</scope> </dependency> </dependencies> <build> <testResources> <testResource> <directory>src/test/java</directory> </testResource> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>