Adds gpg, sonatype, changes groupId

This commit is contained in:
Guillaume Tâche
2025-01-03 22:08:50 +01:00
parent c3d9e72e42
commit f59863c628
183 changed files with 860 additions and 779 deletions
+3 -1
View File
@@ -4,11 +4,13 @@
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.github.gtache</groupId>
<groupId>ch.gtache.fxml-compiler</groupId>
<artifactId>fxml-compiler</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>fxml-compiler-api</artifactId>
<name>fxml-compiler-api</name>
<description>API module for the fxml-compiler project</description>
</project>
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
import java.util.List;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
/**
* Base field {@link InjectionType}s
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
import java.util.Map;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
/**
* Base controller {@link InjectionType}s
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
/**
* Base methods {@link InjectionType}s
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
/**
* Exception thrown when a generation error occurs
@@ -1,6 +1,6 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
import com.github.gtache.fxml.compiler.compatibility.GenerationCompatibility;
import ch.gtache.fxml.compiler.compatibility.GenerationCompatibility;
import java.util.Map;
@@ -1,6 +1,6 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
import com.github.gtache.fxml.compiler.parsing.ParsedObject;
import ch.gtache.fxml.compiler.parsing.ParsedObject;
/**
* Represents a request for a code generation
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
/**
* Generates compiled FXML code
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
import java.util.List;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
/**
* A type of injection for controllers
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
/**
* Base {@link InjectionType}s for resource bundles
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
import java.nio.file.Path;
import java.util.List;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.compatibility;
package ch.gtache.fxml.compiler.compatibility;
/**
* Compatibility information for generated code
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.compatibility;
package ch.gtache.fxml.compiler.compatibility;
/**
* Type of list collector to use for generated code
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import java.io.IOException;
import java.nio.file.Files;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
/**
* Exception thrown when a parsing error occurs
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import java.util.LinkedHashMap;
import java.util.List;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import java.util.LinkedHashMap;
import java.util.List;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import java.util.LinkedHashMap;
import java.util.Map;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import java.util.LinkedHashMap;
import java.util.SequencedCollection;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import java.util.LinkedHashMap;
import java.util.List;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import java.util.Map;
import java.util.SequencedCollection;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
/**
* Parsed property/attribute from FXML
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import java.util.LinkedHashMap;
import java.util.List;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import java.util.LinkedHashMap;
import java.util.List;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import java.util.LinkedHashMap;
import java.util.List;
+4 -4
View File
@@ -1,8 +1,8 @@
/**
* API module for FXML compiler
*/
module com.github.gtache.fxml.compiler.api {
exports com.github.gtache.fxml.compiler;
exports com.github.gtache.fxml.compiler.compatibility;
exports com.github.gtache.fxml.compiler.parsing;
module ch.gtache.fxml.compiler.api {
exports ch.gtache.fxml.compiler;
exports ch.gtache.fxml.compiler.compatibility;
exports ch.gtache.fxml.compiler.parsing;
}
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
import org.junit.jupiter.api.Test;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.compatibility;
package ch.gtache.fxml.compiler.compatibility;
import org.junit.jupiter.api.Test;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.BeforeEach;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.BeforeEach;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.Test;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.BeforeEach;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.BeforeEach;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.BeforeEach;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.Test;
@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.BeforeEach;