147 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			147 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | |
|          xmlns="http://maven.apache.org/POM/4.0.0"
 | |
|          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
 | |
|     <modelVersion>4.0.0</modelVersion>
 | |
| 
 | |
|     <groupId>org.jcnc</groupId>
 | |
|     <artifactId>JNotepad</artifactId>
 | |
|     <version>1.11.2-SNAPSHOT</version>
 | |
|     <name>JNotepad</name>
 | |
| 
 | |
| 
 | |
|     <properties>
 | |
|         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | |
|         <junit.version>5.9.2</junit.version>
 | |
|         <javafx.version>20.0.2</javafx.version>
 | |
|     </properties>
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.kordamp.ikonli</groupId>
 | |
|             <artifactId>ikonli-javafx</artifactId>
 | |
|             <version>12.3.1</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.kordamp.ikonli</groupId>
 | |
|             <artifactId>ikonli-antdesignicons-pack</artifactId>
 | |
|             <version>12.3.1</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>io.github.mkpaz</groupId>
 | |
|             <artifactId>atlantafx-base</artifactId>
 | |
|             <version>2.0.1</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.openjfx</groupId>
 | |
|             <artifactId>javafx-fxml</artifactId>
 | |
|             <version>${javafx.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.junit.jupiter</groupId>
 | |
|             <artifactId>junit-jupiter-api</artifactId>
 | |
|             <version>${junit.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <!--Json依赖-->
 | |
|         <dependency>
 | |
|             <groupId>com.fasterxml.jackson.core</groupId>
 | |
|             <artifactId>jackson-databind</artifactId>
 | |
|             <version>2.12.7.1</version>
 | |
|         </dependency>
 | |
|         <!--log-->
 | |
|         <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
 | |
|         <dependency>
 | |
|             <groupId>org.slf4j</groupId>
 | |
|             <artifactId>slf4j-api</artifactId>
 | |
|             <version>2.0.7</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>ch.qos.logback</groupId>
 | |
|             <artifactId>logback-core</artifactId>
 | |
|             <version>1.4.11</version>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
 | |
|         <dependency>
 | |
|             <groupId>ch.qos.logback</groupId>
 | |
|             <artifactId>logback-classic</artifactId>
 | |
|             <version>1.4.11</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>com.ibm.icu</groupId>
 | |
|             <artifactId>icu4j</artifactId>
 | |
|             <version>73.2</version>
 | |
|             <scope>system</scope>
 | |
|             <systemPath>${project.basedir}/libs/icu4j-73.2.jar</systemPath>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
| 
 | |
|     <build>
 | |
|         <plugins>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-compiler-plugin</artifactId>
 | |
|                 <version>3.11.0</version>
 | |
|                 <configuration>
 | |
|                     <source>17</source>
 | |
|                     <target>17</target>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.openjfx</groupId>
 | |
|                 <artifactId>javafx-maven-plugin</artifactId>
 | |
|                 <version>0.0.8</version>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <!-- Default configuration for running with: mvn clean javafx:run -->
 | |
|                         <id>default-cli</id>
 | |
|                         <configuration>
 | |
|                             <mainClass>org.jcnc.jnotepad/org.jcnc.jnotepad.LunchApp</mainClass>
 | |
|                             <launcher>JNotepad</launcher>
 | |
|                             <jlinkZipName>JNotepad</jlinkZipName>
 | |
|                             <jlinkImageName>JNotepad</jlinkImageName>
 | |
|                             <noManPages>true</noManPages>
 | |
|                             <stripDebug>true</stripDebug>
 | |
|                             <noHeaderFiles>true</noHeaderFiles>
 | |
|                             <compress>2</compress>
 | |
|                         </configuration>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>com.gluonhq</groupId>
 | |
|                 <artifactId>gluonfx-maven-plugin</artifactId>
 | |
|                 <version>1.0.19</version>
 | |
|                 <configuration>
 | |
|                     <mainClass>org.jcnc.jnotepad/org.jcnc.jnotepad.LunchApp</mainClass>
 | |
|                     <reflectionList>
 | |
|                         org.jcnc.jnotepad.app.config.AppConfig,org.jcnc.jnotepad.app.config.AppConfig$ShortcutKey
 | |
|                     </reflectionList>
 | |
|                     <bundlesList>
 | |
|                         i18n/i18n
 | |
|                     </bundlesList>
 | |
|                 </configuration>
 | |
|             </plugin>
 | |
|             <plugin>
 | |
|                 <groupId>org.apache.maven.plugins</groupId>
 | |
|                 <artifactId>maven-shade-plugin</artifactId>
 | |
|                 <version>3.2.4</version>
 | |
|                 <configuration>
 | |
|                     <transformers>
 | |
|                         <transformer
 | |
|                                 implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
 | |
|                     </transformers>
 | |
|                 </configuration>
 | |
|                 <executions>
 | |
|                     <execution>
 | |
|                         <phase>package</phase>
 | |
|                         <goals>
 | |
|                             <goal>shade</goal>
 | |
|                         </goals>
 | |
|                     </execution>
 | |
|                 </executions>
 | |
|             </plugin>
 | |
|         </plugins>
 | |
|     </build>
 | |
| 
 | |
| 
 | |
| </project> |