Gelöscht_25272 Posted May 16, 2021 Share Posted May 16, 2021 Wo kann ich die Dateien im resources mit "exportieren" lassen? pom.xml <?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>org.example</groupId> <artifactId>IPv4_6-Address-Info</artifactId> <version>1.0-SNAPSHOT</version> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>Main</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> <resources> <resource> <directory>resources</directory> </resource> </resources> </build> <dependencies> <dependency> <groupId>io.ipinfo</groupId> <artifactId>ipinfo-api</artifactId> <version>1.0</version>> <scope>compile</scope> </dependency> </dependencies> </project> MANIFEST.MF Manifest-Version: 1.0 Created-By: Apache Maven Build-Jdk: 1.8.0_292 Main-Class: Main Bild 1: Bild 2: Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now