Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated GWT version to 2.11.0 #34

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 14 additions & 9 deletions AceGWT/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
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>

<groupId>edu.ycp.cs.dh</groupId>
<parent>
<groupId>edu.ycp.cs.dh</groupId>
<artifactId>acegwt-2.11.0</artifactId>
<version>1.3.3</version>
</parent>

<artifactId>acegwt</artifactId>
<version>1.3.3</version>
<packaging>gwt-lib</packaging>
Expand All @@ -25,7 +30,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<!-- dependencies -->
<gwt.version>2.8.2</gwt.version>
<gwt.version>2.11.0</gwt.version>

<!-- plugins -->
<maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
Expand All @@ -51,8 +56,8 @@
<github.global.server>github</github.global.server>

<!-- AceGWT repository -->
<acegwt.repository.name>AceGWT</acegwt.repository.name>
<acegwt.repository.owner>josepaiva94</acegwt.repository.owner>
<acegwt.repository.name>AceGWT-2.11.0</acegwt.repository.name>
<acegwt.repository.owner>simdeistud</acegwt.repository.owner>
</properties>

<distributionManagement>
Expand All @@ -66,7 +71,7 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt</artifactId>
<version>${gwt.version}</version>
<type>pom</type>
Expand All @@ -77,20 +82,20 @@

<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-user</artifactId>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-dev</artifactId>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-codeserver</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-servlet</artifactId>
<scope>runtime</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions AceGWT/src/main/module.gwt.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.2//EN"
"http://gwtproject.org/doctype/2.8.2/gwt-module.dtd">
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.11.0//EN"
"http://gwtproject.org/doctype/2.11.0/gwt-module.dtd">
<module rename-to="acegwt">
<inherits name='com.google.gwt.user.User'/>

Expand Down
24 changes: 15 additions & 9 deletions AceGWTDemo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
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>

<groupId>edu.ycp.cs.dh</groupId>
<parent>
<groupId>edu.ycp.cs.dh</groupId>
<artifactId>acegwt-2.11.0</artifactId>
<version>1.3.3</version>
</parent>

<artifactId>acegwt-demo</artifactId>
<version>0.0.1</version>
<packaging>gwt-app</packaging>
Expand All @@ -21,7 +26,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<!-- dependencies -->
<gwt.version>2.8.2</gwt.version>
<gwt.version>2.11.0</gwt.version>
<acegwt.version>1.3.3</acegwt.version>

<!-- plugins -->
Expand All @@ -40,7 +45,8 @@
<repositories>
<repository>
<id>acegwt-${acegwt.version}</id>
<url>https://raw.github.com/${acegwt.repository.owner}/${acegwt.repository.name}/acegwt-${acegwt.version}</url>
<url>https://raw.github.com/${acegwt.repository.owner}/${acegwt.repository.name}/acegwt-${acegwt.version}
</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
Expand All @@ -51,7 +57,7 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt</artifactId>
<version>${gwt.version}</version>
<type>pom</type>
Expand All @@ -62,20 +68,20 @@

<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-user</artifactId>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-dev</artifactId>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-codeserver</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<groupId>org.gwtproject</groupId>
<artifactId>gwt-servlet</artifactId>
<scope>runtime</scope>
</dependency>
Expand Down Expand Up @@ -164,5 +170,5 @@
</plugin>
</plugins>
</build>

</project>
4 changes: 2 additions & 2 deletions AceGWTDemo/src/main/module.gwt.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.8.2//EN"
"http://gwtproject.org/doctype/2.8.2/gwt-module.dtd">
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.11.0//EN"
"http://gwtproject.org/doctype/2.11.0/gwt-module.dtd">
<module rename-to="acegwtdemo">
<inherits name='com.google.gwt.user.User'/>

Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ The [wiki](https://github.com/daveho/AceGWT/wiki) has more information, includin

Also, there is [javadoc](http://daveho.github.io/AceGWT/api/).

## What is included in this forked version

This version has been updated to use GWT 2.11.0 which has switced to using a different Maven repository.

To include this library in your project you need to set up this GitHub repository as a maven repo in your pom.xml file by doing as follows:

## Latest news

15 June 2018
Expand Down
25 changes: 25 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?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>

<groupId>edu.ycp.cs.dh</groupId>
<artifactId>acegwt-2.11.0</artifactId>
<version>1.3.3</version>
<packaging>pom</packaging>
<name>AceGWT-2.11.0</name>
<description>
Ace is an embeddable code editor written in JavaScript. It matches the features and performance of native
editors such as Sublime, Vim and TextMate. It can be easily embedded in any web page and JavaScript application.
Ace is maintained as the primary editor for Cloud9 IDE and is the successor of the Mozilla Skywriter (Bespin)
project.
AceGWT is an integration of Ace into GWT.
</description>

<modules>
<module>AceGWT</module>
<!-- <module>AceGWTDemo</module> -->
</modules>

</project>