Skip to content

Commit 9d5fb3f

Browse files
committed
Working GeoTools 35-RC application and testcases
1 parent 6b99286 commit 9d5fb3f

16 files changed

Lines changed: 1007 additions & 0 deletions

File tree

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/mvnw text eol=lf
2+
*.cmd text eol=crlf

.github/workflows/maven.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Maven Build
2+
env:
3+
MAVEN_OPTS: -Djava.awt.headless=true
4+
MAVEN_VERSION: '3.9.16'
5+
JAVA_VERSION: '17'
6+
7+
on:
8+
push:
9+
pull_request:
10+
workflow_dispatch:
11+
12+
jobs:
13+
build:
14+
name: Build
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v7
18+
- name: 'Set up JDK'
19+
uses: actions/setup-java@v5
20+
with:
21+
java-version: ${{ env.JAVA_VERSION }}
22+
distribution: 'temurin'
23+
cache: 'maven'
24+
- name: 'Set up Maven'
25+
uses: stCarolas/setup-maven@v5.1
26+
with:
27+
maven-version: ${{ env.MAVEN_VERSION }}
28+
- name: 'Build with Maven'
29+
run: mvn clean install

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
HELP.md
2+
target/
3+
.mvn/wrapper/maven-wrapper.jar
4+
!**/src/main/**/target/
5+
!**/src/test/**/target/
6+
.spotless-index
7+
8+
### STS ###
9+
.apt_generated
10+
.classpath
11+
.factorypath
12+
.project
13+
.settings
14+
.springBeans
15+
.sts4-cache
16+
17+
### IntelliJ IDEA ###
18+
.idea
19+
*.iws
20+
*.iml
21+
*.ipr
22+
23+
### NetBeans ###
24+
/nbproject/private/
25+
/nbbuild/
26+
/dist/
27+
/nbdist/
28+
/.nb-gradle/
29+
build/
30+
!**/src/main/**/build/
31+
!**/src/test/**/build/
32+
33+
### VS Code ###
34+
.vscode/

.mvn/jvm.config

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
-Djava.awt.headless=true
2+
-XX:+IgnoreUnrecognizedVMOptions
3+
-Djava.security.egd=file:/dev/./urandom
4+
--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
5+
--add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
6+
--add-exports jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED
7+
--add-exports jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED
8+
--add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED
9+
--add-exports jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED
10+
--add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED
11+
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
12+
--add-opens jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED
13+
--add-opens jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED
14+
--add-modules=jdk.incubator.vector
15+
--enable-native-access=ALL-UNNAMED

.mvn/maven.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-T1
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
wrapperVersion=3.3.4
2+
distributionType=only-script
3+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.16/apache-maven-3.9.16-bin.zip

mvnw

Lines changed: 295 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)