Skip to content
Merged
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
40 changes: 25 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<packaging>jar</packaging>

<name>sabi</name>
<description>A small framework to separate logics and data accesses for Java application.</description>
<description>A small framework to separate logics and data accesses for Java application</description>
<url>https://github.com/sttk/sabi-java</url>

<licenses>
Expand All @@ -32,7 +32,7 @@
<scm>
<url>https://github.com/sttk/sabi-java</url>
<connection>scm:git:git://github.com/sttk/sabi-java.git</connection>
<developerConnection>scm:git:git//github.com/sttk/sabi-java.git</developerConnection>
<developerConnection>scm:git:git://github.com/sttk/sabi-java.git</developerConnection>
</scm>

<properties>
Expand All @@ -56,19 +56,19 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.11.4</version>
<version>6.0.0-M1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.11.4</version>
<version>6.0.0-M1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.27.2</version>
<version>4.0.0-M1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -78,7 +78,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -94,13 +94,13 @@
<version>3.11.2</version>
<configuration>
<author>true</author>
<source>21</source>
<source>23</source>
<show>protected</show>
<encoding>UTF-8</encoding>
<charset>UTF-8</charset>
<docencoding>UTF-8</docencoding>
<bottom><![CDATA[Copyright 2022-2025 Takayuki Sato. All Rights Reserved.]]></bottom>
<outputDirectory>${project.build.directory}/site</outputDirectory>
<outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
</configuration>
<executions>
<execution>
Expand All @@ -120,7 +120,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<version>0.8.13</version>
<executions>
<execution>
<id>default-prepare-agent</id>
Expand All @@ -140,7 +140,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<version>3.14.0</version>
<configuration>
<compilerArgs>
<arg>-g</arg>
Expand All @@ -151,7 +151,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.2</version>
<version>3.5.3</version>
</plugin>
</plugins>
</build>
Expand All @@ -164,7 +164,7 @@
<plugin>
<groupId>org.graalvm.buildtools</groupId>
<artifactId>native-maven-plugin</artifactId>
<version>0.10.4</version>
<version>0.10.6</version>
<extensions>true</extensions>
<executions>
<execution>
Expand All @@ -173,6 +173,16 @@
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.9.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</configuration>
</execution>
</executions>
<configuration>
Expand All @@ -189,7 +199,7 @@
<profile>
<id>trace</id>
<properties>
<argLine>-agentlib:native-image-agent=config-output-dir=target/native-trace/</argLine>
<argLine>-agentlib:native-image-agent=config-output-dir=target/native-trace</argLine>
</properties>
</profile>
<profile>
Expand All @@ -198,7 +208,7 @@
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/sttk/cliargs-java</url>
<url>https://maven.pkg.github.com/sttk/sabi-java</url>
</repository>
</distributionManagement>
</profile>
Expand Down Expand Up @@ -240,7 +250,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down
20 changes: 20 additions & 0 deletions src/test/resources/META-INF/native-image/native-image.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Args = --initialize-at-build-time=\
org.junit.jupiter.api.DisplayNameGenerator\$IndicativeSentences,\
org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor\$ClassInfo,\
org.junit.jupiter.engine.descriptor.ClassBasedTestDescriptor\$LifecycleMethods,\
org.junit.jupiter.engine.descriptor.ClassTemplateInvocationTestDescriptor,\
org.junit.jupiter.engine.descriptor.ClassTemplateTestDescriptor,\
org.junit.jupiter.engine.descriptor.DynamicDescendantFilter\$Mode,\
org.junit.jupiter.engine.descriptor.ExclusiveResourceCollector\$1,\
org.junit.jupiter.engine.descriptor.MethodBasedTestDescriptor\$MethodInfo,\
org.junit.jupiter.engine.discovery.ClassSelectorResolver\$DummyClassTemplateInvocationContext,\
org.junit.platform.engine.support.store.NamespacedHierarchicalStore\$EvaluatedValue,\
org.junit.platform.launcher.core.DiscoveryIssueNotifier,\
org.junit.platform.launcher.core.HierarchicalOutputDirectoryProvider,\
org.junit.platform.launcher.core.LauncherDiscoveryResult\$EngineResultInfo,\
org.junit.platform.launcher.core.LauncherPhase,\
org.junit.platform.suite.engine.DiscoverySelectorResolver,\
org.junit.platform.suite.engine.SuiteTestDescriptor\$DiscoveryIssueForwardingListener,\
org.junit.platform.suite.engine.SuiteTestDescriptor\$LifecycleMethods,\
org.junit.platform.commons.util.KotlinReflectionUtils,\
org.junit.platform.launcher.core.DiscoveryIssueNotifier\$1
Loading