-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Gradle 7.6.2; GWT improvements.
- Loading branch information
1 parent
146614d
commit 11035a3
Showing
10 changed files
with
57 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.2-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
30 changes: 30 additions & 0 deletions
30
src/main/resources/com/github/your_name/your_library.gwt.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit trunk//EN" | ||
"https://www.gwtproject.org/doctype/2.8.2/gwt-module.dtd"> | ||
<!-- To compile to Gwt, you need to reference this file in your master .gwt.xml | ||
file (usually called GdxDefinition.gwt.xml) as follows: | ||
<inherits name="com.github.your_name.your_library" /> | ||
Obviously, change your_library to match your project and this file's name, | ||
and change the source path below to match the folder next to this. When you | ||
change com.github.your_name to a different package, that also changes the | ||
GWT inherits line for this library. So if I changed | ||
com.github.your_name.your_library to com.squidpony.squidlib, then this file | ||
would have to be moved to the com/squidpony folder and renamed to | ||
squidlib.gwt.xml . The folder next to it should also be squidlib/ . Note, | ||
the last part of the "inherits" name is the name of this .gwt.xml file, | ||
without any extension. | ||
Note, you should not have a .gwt.xml file in the root of your resources/ | ||
folder. That was the way this template handled GWT in earlier versions, | ||
but that can cause mysterious and severe issues when compiling. | ||
--> | ||
<module> | ||
<!-- This relative path points to the folder that has sources in it. | ||
This path is slash-separated and is relative to this file. --> | ||
<source path="your_library"/> | ||
<!-- This is a good idea because so much GWT-specific code needs libGDX, | ||
like the libGDX reflection code. These "inherits" names are period-separated. --> | ||
<inherits name="com.badlogic.gdx.backends.gdx_backends_gwt" /> | ||
</module> |
This file was deleted.
Oops, something went wrong.