aj-base
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.actionjava</groupId>
<artifactId>aj-base</artifactId>
<version>0.0.1</version>
</dependency><?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.actionjava</groupId> <artifactId>aj-parent</artifactId> <version>0.0.1</version> </parent> <artifactId>aj-base</artifactId> <name>ActionJava Base</name> <description>ActionJava Base module</description> <url>http://www.actionjava.com</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <directory>src/main/java</directory> <includes> <include>**/*.java</include> <include>**/*.gwt.xml</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-servlet</artifactId> </dependency> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-user</artifactId> </dependency> <!-- PROJECT DEPENDENCIES --> <dependency> <groupId>com.actionjava</groupId> <artifactId>aj-core</artifactId> </dependency> <dependency> <groupId>com.actionjava</groupId> <artifactId>aj-console</artifactId> </dependency> <dependency> <groupId>com.actionjava</groupId> <artifactId>aj-anim</artifactId> </dependency> <dependency> <groupId>com.actionjava</groupId> <artifactId>aj-io</artifactId> </dependency> <dependency> <groupId>com.actionjava</groupId> <artifactId>aj-sound</artifactId> </dependency> </dependencies> </project>