0

我是 Maven 的初学者,我想从我的 .java 中创建带有多个 3rd 方库的 .jar 文件。我在我的项目中使用了超过 32 个库,我需要编译该项目,以便可以在 CQ5 OSGi 中使用它。我的 POM.xml 中有这个

<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>info.hartmann.dfs</groupId>
  <artifactId>dfs-connection-handler</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>DFS connection handler</name>
  <build>
    <sourceDirectory>C:\Users\302104\workspace\DFS\src</sourceDirectory>
    <resources>
      <resource>
        <directory>C:\Users\302104\workspace\lib</directory>
      </resource>
    </resources>
    <directory>C:\Users\302104\workspace\DFS\target</directory>
    <finalName>dfs-connection-handler-0.0.1-SNAPSHOT</finalName>
    <plugins>
  <plugin>
    <groupId>org.apache.sling</groupId>
    <artifactId>maven-sling-plugin</artifactId>
    <executions>
        <execution>
            <id>install-bundle</id>
            <goals>
                <goal>install</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <slingUrl>http://localhost:4502/system/console</slingUrl>
        <user>user</user>
        <password>password</password>
    </configuration>
</plugin>
  <plugin>
    <groupId>org.apache.felix</groupId>
    <artifactId>maven-bundle-plugin</artifactId>
    <version>2.1.0</version>
    <extensions>true</extensions>
    <executions>
        <execution>
            <id>wrap-my-dependency</id>
            <goals>
                <goal>wrap</goal>
            </goals>
            <configuration>
                <wrapImportPackage>;</wrapImportPackage>
            </configuration>
        </execution>
    </executions>
    <configuration>
        <instructions>
            <export-package>info.hartmann.dfs</export-package>
            <import-package>
                java.util.List;resolution=optional,
                com.emc.documentum.fs.datamodel.core.*;resolution=optional,
                com.emc.documentum.fs.datamodel.core.content.*;resolution=optional,
                com.emc.documentum.fs.datamodel.core.profiles.*;resolution=optional,
                com.emc.documentum.fs.datamodel.core.query.*;resolution=optional,
                com.emc.documentum.fs.rt.context.*;resolution=optional,
                com.emc.documentum.fs.services.core.client.*;resolution=optional,
                *
            </import-package>
        </instructions>
    </configuration>
  </plugin>
</plugins>
  </build>

</project>

我几乎不知道我在用这个 pom.xml 做什么,所以任何帮助都会很好。

顺便说一句,我怎样才能使用像这样的标记来编译那个 .java 文件

@Service(DfsHandler.class)
@Component(label = "DFS Connection Handler", immediate = true, metatype = true)

谢谢你的帮助

4

1 回答 1

4

dev.day.com网站上的使用 maven页面开发是一个不错的起点。这有很多信息可以帮助您入门。

如果您拥有的 32 个库位于 maven 存储库中,则应通过POM 中的依赖项条目引用它们。如果依赖项不在 Maven 中,您可以在依赖项条目中使用 systemPath 引用它们,如下所示:

<dependency>
    <groupId>org.swinglabs</groupId>
    <artifactId>swingx</artifactId>
    <version>0.9.2</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/lib/swingx-0.9.3.jar</systemPath>
</dependency>

或者,本文描述了如何使用 maven 将这些库添加到本地存储库。

如果可以的话,最好按照maven 标准目录布局来布置项目,以避免配置大量路径。至少将路径配置为与项目相关,而不是特定于您的机器。例如,不要使用C:\Users\302104\workspace\DFS\src,而是使用src

您可以使用Apache Felix SCR maven插件处理 @Service 和 @Component 注释。:

  <plugin>
    <groupId>org.apache.felix</groupId>
    <artifactId>maven-scr-plugin</artifactId>
    <version>1.9.0</version>
    <executions>
      <execution>
        <id>generate-scr-scrdescriptor</id>
        <goals>
          <goal>scr</goal>
        </goals>
      </execution>
    </executions>
  </plugin>

这个插件将生成添加到你的包中的元数据,这些元数据会将你的服务注册到 Felix OSGi 运行时。

您还需要项目中的 SCR 注释依赖项:

<dependency>
  <!-- scr annotations - for generating component descriptors only -->
  <groupId>org.apache.felix</groupId>
  <artifactId>org.apache.felix.scr.annotations</artifactId>
  <version>1.6.0</version>
  <scope>provided</scope>
</dependency>

这个关于 SCR 的演示文稿应该很好地介绍了它们的使用。另外,我在这个 github repo中有一个简单的工作示例。

于 2013-07-01T12:13:00.390 回答