我正在使用Maven打包一个耳文件。我有2个个人资料。 1个配置文件(aras)用于生产。其他配置文件(aras_nb)用于每晚构建。我想包装2种不同的耳塞。两个耳文件应在同一weblogic上运行。耳朵文件也具有不同的数据源。那已经起作用了。 现在,我想通过Maven配置文件选择URL。 我该怎么做才能使它运行?
我有一个主项目,一个耳朵项目,一个Web项目和一个ejb项目。
主项目的pom:
<groupId>itzbund.zoll</groupId>
<artifactId>Aras</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>Aras</name>
<properties>
<application.name>Aras</application.name>
<application.ear.name>Aras-ear</application.ear.name>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<context-root>value</context-root>
</properties>
<modules>
<module>Aras-ear</module>
<module>Aras-web</module>
<module>Aras-ejb</module>
</modules>
<profiles>
<profile>
<id>choose_environment</id>
<build>
<!-- enable resource filter to set the datasource name -->
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
</profile>
<profile>
<id>aras</id>
<properties>
<datasource.name>ArasDataSource</datasource.name>
<environment.name>ARAS</environment.name>
<contextroot.name>/aras</contextroot.name>
</properties>
</profile>
<profile>
<id>aras_nb</id>
<properties>
<datasource.name>ArasNbDataSource</datasource.name>
<environment.name>ARAS-NB</environment.name>
<contextroot.name>/aras_nb</contextroot.name>
</properties>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
在Eclipse中,我使用配置文件“ choose_environment,aras”执行maven“ clean package”。 当我对项目进行Maven更新时,上下文根会自动设置回“ Aras-web”。
答案 0 :(得分:1)
找到了。
阿拉斯的点子
<profiles>
<profile>
<id>aras</id>
<properties>
<datasource.name>ArasDataSource</datasource.name>
<environment.name>ARAS</environment.name>
<rootcontext.name>aras</rootcontext.name>
<earfile.name>Aras-ear</earfile.name>
</properties>
</profile>
<profile>
<id>aras_nb</id>
<properties>
<datasource.name>ArasNbDataSource</datasource.name>
<environment.name>ARAS-NB</environment.name>
<rootcontext.name>aras_nb</rootcontext.name>
<earfile.name>Aras_nb-ear</earfile.name>
</properties>
</profile>
</profiles>
点耳的绒球:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<version>2.8</version>
<configuration>
<version>6</version>
<defaultLibBundleDir>lib</defaultLibBundleDir>
<finalName>${earfile.name}-${project.Version}</finalName>
<modules>
<webModule>
<groupId>${project.groupId}</groupId>
<artifactId>Aras-web</artifactId>
<contextRoot>/${rootcontext.name}</contextRoot>
</webModule>
</modules>
</configuration>
</plugin>
</plugins>
</build>