Gehören alle jars aus einem bestimmten Ordner in eine ear-Datei
Ich bin versucht, die Migration der alten Projekt in maven. Eigentlich Stand ich vor einem problem, wie kopiere alle Dateien aus dem "Ressourcen" - Ordner in das Stammverzeichnis der EAR-Datei.
Könnte Sie bitte zeigen, wo, um die Konfiguration dieses "Ressourcen" - Verzeichnis?
Ich reserched, die ich verwenden könnte, "earSourceDirectory"
Das Zitat von der Maven-Docs über diese parameter: "Single Verzeichnis für zusätzliche Dateien in das OHR. Standardwert ist: ${basedir}/src/main/Anwendung".
Dies ist mein pom.xml Datei in der "Ohr" - Verzeichnis:
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<packaging>ear</packaging>
<parent>
<artifactId>detal</artifactId>
<groupId>detal</groupId>
<version>1.0</version>
</parent>
<groupId>javaee-app.ear</groupId>
<artifactId>ear</artifactId>
<version>1.0</version>
<name>ear</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>javaee-app.controller</groupId>
<artifactId>controller</artifactId>
<type>ejb</type>
<version>1.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>javaee-app.view</groupId>
<artifactId>view</artifactId>
<version>1.0</version>
<type>war</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-ear-plugin</artifactId>
<version>2.4.2</version>
<configuration>
<jboss>
<version>5</version>
</jboss>
<modules>
<ejbModule>
<groupId>javaee-app.controller</groupId>
<artifactId>controller</artifactId>
</ejbModule>
<webModule>
<groupId>javaee-app.view</groupId>
<artifactId>view</artifactId>
<contextRoot>view</contextRoot>
</webModule>
<jarModule>
<groupId>javaee-app.model</groupId>
<artifactId>model</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
<jarModule>
<groupId>javaee-app.utils</groupId>
<artifactId>utils</artifactId>
<includeInApplicationXml>true</includeInApplicationXml>
</jarModule>
</modules>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.2</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>