By replaceing references to org.kuali.student.core. I mean in the jit-
test-project/jit-test/pom.xml
Erase
<!-- KS core & common dependencies -->
<dependency>
<groupId>org.kuali.student.core</groupId>
<artifactId>ks-common-util</artifactId>
<version>0.0.1-SNAPSHOT</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.kuali.student.core</groupId>
<artifactId>ks-common-ui</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.kuali.student.core</groupId>
<artifactId>ks-core-ui</artifactId>
<version>0.0.1-SNAPSHOT</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
and add
<!-- GWT Dependencies -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.1</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-incubator</artifactId>
<version>1.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwtVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwtVersion}</version>
<classifier>${platform}-libs</classifier>
<type>zip</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwtVersion}</version>
<classifier>${platform}</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>${gwtVersion}</version>
<exclusions>
<exclusion>
<artifactId>junit</artifactId>
<groupId>com.google.gwt</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-visualization</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.gwtx</groupId>
<artifactId>gwtx</artifactId>
<version>1.5.3</version>
<scope>provided</scope>
</dependency>