I Build a multi module project having name ThreadPool-Maven
我构建一个名为ThreadPool-Maven的多模块项目
ThreadPool-Maven contains two projects ThreadPool-Implementation and ThreadPool-Evaluator.
ThreadPool-Maven包含两个项目ThreadPool-Implementation和ThreadPool-Evaluator。
Both are interdependent, ThreadPool-Evaluator project are dependendent on ThreadPool-Implementation project.
两者都是相互依赖的,ThreadPool-Evaluator项目依赖于ThreadPool-Implementation项目。
ThreadPool-Implementation contains three java files.
ThreadPool-Implementation包含三个java文件。
- ThreadPool.java
- WorkerThreadPool.java
- Done.java
ThreadPool-Evaluator contains two java files.
ThreadPool-Evaluator包含两个java文件。
- TestThreadPool.java
- TestWorkerThread.java
These are my work till now. Now I want to build a bundle of ThreadPool-Implementation and ThreadPool-Evaluator and these bundles are used by ThreadPool-Maven to perform same task. Help me to do that.
这些是我的工作到现在为止。现在我想构建一个ThreadPool-Implementation和ThreadPool-Evaluator捆绑包,ThreadPool-Maven使用这些捆绑包来执行相同的任务。帮我做那个。
POMS are as follows:-
POMS如下: -
ThreadPool-Maven :-
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.xyz.intern.multiple_project</groupId>
<version>0.8-SNAPSHOT</version>
<artifactId>ThreadPool-Maven</artifactId>
<packaging>pom</packaging>
<name>Simple Parent Project ThreadPool-Maven</name>
<modules>
<module>ThreadPool-Implementation</module>
<module>ThreadPool-Evaluator</module>
</modules>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
ThreadPool-Implementation
<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>
<parent>
<groupId>com.xyz.intern.multiple_project</groupId>
<artifactId>ThreadPool-Maven</artifactId>
<version>0.8-SNAPSHOT</version>
</parent>
<artifactId>ThreadPool-Implementation</artifactId>
<packaging>jar</packaging>
<name>ThreadPool-Implementation </name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
ThreadPool-Evaluator
<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>
<parent>
<groupId>com.xyz.intern.multiple_project</groupId>
<artifactId>ThreadPool-Maven</artifactId>
<version>0.8-SNAPSHOT</version>
</parent>
<artifactId>ThreadPool-Evaluator</artifactId>
<packaging>jar</packaging>
<name>ThreadPool-Evaluation</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.xyz.intern.multiple_project</groupId>
<artifactId>ThreadPool-Implementation</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
1 个解决方案
#1
0
The Maven bundle plugin is used for generating OSGi compatible bundle JAR files. Check out the Apache Felix Maven Bundle Plugin for more info.
Maven bundle插件用于生成OSGi兼容的bundle JAR文件。查看Apache Felix Maven Bundle插件以获取更多信息。
#1
0
The Maven bundle plugin is used for generating OSGi compatible bundle JAR files. Check out the Apache Felix Maven Bundle Plugin for more info.
Maven bundle插件用于生成OSGi兼容的bundle JAR文件。查看Apache Felix Maven Bundle插件以获取更多信息。