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

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>

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
import java.util.List;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
/**
* Base field {@link InjectionType}s

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
import java.util.Map;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
/**
* Base controller {@link InjectionType}s

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
/**
* Base methods {@link InjectionType}s

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
/**
* Exception thrown when a generation error occurs

View File

@@ -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;

View File

@@ -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

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
/**
* Generates compiled FXML code

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
import java.util.List;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
/**
* A type of injection for controllers

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
/**
* Base {@link InjectionType}s for resource bundles

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
import java.nio.file.Path;
import java.util.List;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.compatibility;
package ch.gtache.fxml.compiler.compatibility;
/**
* Compatibility information for generated code

View File

@@ -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

View File

@@ -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;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
/**
* Exception thrown when a parsing error occurs

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
/**
* Parsed property/attribute from FXML

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

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;
}

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler;
package ch.gtache.fxml.compiler;
import org.junit.jupiter.api.Test;

View File

@@ -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;

View File

@@ -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;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.compatibility;
package ch.gtache.fxml.compiler.compatibility;
import org.junit.jupiter.api.Test;

View File

@@ -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;

View File

@@ -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;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.BeforeEach;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.BeforeEach;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.Test;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.BeforeEach;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.BeforeEach;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.BeforeEach;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.Test;

View File

@@ -1,4 +1,4 @@
package com.github.gtache.fxml.compiler.parsing;
package ch.gtache.fxml.compiler.parsing;
import org.junit.jupiter.api.BeforeEach;