Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ailabs-software/b7b41feecc054570ec31d1658216771a to your computer and use it in GitHub Desktop.
Save ailabs-software/b7b41feecc054570ec31d1658216771a to your computer and use it in GitHub Desktop.
ContentCentral.gwt.xml =========
<?xml version="1.0" encoding="UTF-8"?>
<!-- Custom-built GWT. You probably want to uncomment the DOCTYPE and point it to your GWT checkout
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 0.0.0//EN" "file:///path/to/gwt/checkout/distro-source/core/src/gwt-module.dtd">
-->
<module rename-to="ContentCentral">
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name="com.google.gwt.core.Core"/>
<inherits name="ailabs.jclosure.JClosure"/>
<inherits name="shopwindowshared.ShopwindowShared"/>
<!-- Inherit the default GWT style sheet. You can change -->
<!-- the theme of your GWT application by uncommenting -->
<!-- any one of the following lines. -->
<!-- <inherits name='com.google.gwt.user.theme.standard.Standard'/> -->
<!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
<!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->
<!-- Other module inherits -->
<!-- Specify the app entry point class. -->
<entry-point class="client.ContentCentral"/>
<!-- IMPLICIT Specify the paths for translatable code -->
<source path="client"/>
<!-- allow Super Dev Mode -->
<add-linker name="xsiframe"/>
</module>
POM xml for contentcentral ==================================
<?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>com.ailabs</groupId>
<artifactId>root-group</artifactId>
<version>1</version>
</parent>
<groupId>com.ailabs</groupId>
<artifactId>contentcentral</artifactId>
<version>1.0-SNAPSHOT</version>
<name>contentcentral</name>
<packaging>war</packaging>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt</artifactId>
<version>2.8.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<scope>provided</scope>
</dependency>
<!-- Local dependencies -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>jclosure</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>shopwindowshared</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.8.0</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
<configuration>
<style>PRETTY</style>
</configuration>
</plugin>
</plugins>
</build>
</project>
=== Root pboject POM XML -- probably not important
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.ailabs</groupId>
<artifactId>root-group</artifactId>
<version>1</version>
<packaging>pom</packaging>
<modules>
<module>jclosure</module>
<module>shopwindowshared</module>
<module>contentcentral</module>
<module>socialmanager</module>
</modules>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment