|
1 | | -<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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><groupId>io.github.andrestubbe</groupId><artifactId>fastfileindex</artifactId><version>v1.0.0</version><packaging>jar</packaging><properties><maven.compiler.source>17</maven.compiler.source><maven.compiler.target>17</maven.compiler.target><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding></properties><repositories><repository><id>jitpack.io</id><url>https://jitpack.io</url></repository></repositories><dependencies><dependency><groupId>com.github.andrestubbe</groupId><artifactId>fastcore</artifactId><version>v1.0.0</version></dependency></dependencies><build><resources><resource><directory>src/main/resources</directory><includes><include>**/*.dll</include></includes></resource></resources><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-assembly-plugin</artifactId><version>3.6.0</version><configuration><descriptorRefs><descriptorRef>jar-with-dependencies</descriptorRef></descriptorRefs><appendAssemblyId>false</appendAssemblyId><finalName>fastfileindex-v1.0.0</finalName><archive><manifest><mainClass>fastfileindex.FastFileIndex</mainClass></manifest></archive></configuration><executions><execution><id>make-assembly</id><phase>package</phase><goals><goal>single</goal></goals></execution></executions></plugin></plugins></build></project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + <groupId>io.github.andrestubbe</groupId> |
| 7 | + <artifactId>fastfileindex</artifactId> |
| 8 | + <version>v1.0.0</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <properties> |
| 12 | + <maven.compiler.source>17</maven.compiler.source> |
| 13 | + <maven.compiler.target>17</maven.compiler.target> |
| 14 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | + </properties> |
| 16 | + |
| 17 | + <repositories> |
| 18 | + <repository> |
| 19 | + <id>jitpack.io</id> |
| 20 | + <url>https://jitpack.io</url> |
| 21 | + </repository> |
| 22 | + </repositories> |
| 23 | + |
| 24 | + <dependencies> |
| 25 | + <dependency> |
| 26 | + <groupId>com.github.andrestubbe</groupId> |
| 27 | + <artifactId>fastcore</artifactId> |
| 28 | + <version>v1.0.0</version> |
| 29 | + </dependency> |
| 30 | + </dependencies> |
| 31 | + |
| 32 | + <build> |
| 33 | + <resources> |
| 34 | + <resource> |
| 35 | + <directory>src/main/resources</directory> |
| 36 | + <includes> |
| 37 | + <include>**/*.dll</include> |
| 38 | + </includes> |
| 39 | + </resource> |
| 40 | + </resources> |
| 41 | + <plugins> |
| 42 | + <plugin> |
| 43 | + <groupId>org.apache.maven.plugins</groupId> |
| 44 | + <artifactId>maven-assembly-plugin</artifactId> |
| 45 | + <version>3.6.0</version> |
| 46 | + <configuration> |
| 47 | + <descriptorRefs> |
| 48 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 49 | + </descriptorRefs> |
| 50 | + <appendAssemblyId>false</appendAssemblyId> |
| 51 | + <finalName>fastfileindex-v1.0.0</finalName> |
| 52 | + <archive> |
| 53 | + <manifest> |
| 54 | + <mainClass>fastfileindex.FastFileIndex</mainClass> |
| 55 | + </manifest> |
| 56 | + </archive> |
| 57 | + </configuration> |
| 58 | + <executions> |
| 59 | + <execution> |
| 60 | + <id>make-assembly</id> |
| 61 | + <phase>package</phase> |
| 62 | + <goals> |
| 63 | + <goal>single</goal> |
| 64 | + </goals> |
| 65 | + </execution> |
| 66 | + </executions> |
| 67 | + </plugin> |
| 68 | + </plugins> |
| 69 | + </build> |
| 70 | +</project> |
0 commit comments