58 Star 158 Fork 65

SuperMap / SuperMap iDesktop Cross

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
module-pom-template.xml 2.76 KB
Copy Edit Raw Blame History
waveletcoding authored 2016-08-30 01:11 . 1. 配置文件优化;
<?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">
<parent>
<artifactId>idesktop.cross</artifactId>
<groupId>com.supermap.idesktop.cross</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<!--
***************************************************************
********在此处填写你的模块名称,由 IDE 新建的 Maven 工程会自动填写。********
***************************************************************
-->
<artifactId>Your Module Name</artifactId>
<packaging>jar</packaging>
<!--
Core、Control 为 SuperMap iDesktop Cross 的核心库,为必填依赖。
iDesktop 为 OSGI 框架核心库提供者,为必填依赖。这三个依赖必须保留,禁止修改。
-->
<dependencies>
<dependency>
<groupId>com.supermap.idesktop.cross</groupId>
<artifactId>iDesktop</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.supermap.idesktop.cross</groupId>
<artifactId>Core</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.supermap.idesktop.cross</groupId>
<artifactId>Controls</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<!--
***************************************************
********在此处填写 OSGI 插件工程必须的 Activator 类。********
***************************************************
-->
<Bundle-Activator>yourPackage.yourActivator</Bundle-Activator>
<!--
此处配置的是 OSGI bundle 间的运行时依赖,Core、Control 为 SuperMap iDesktop Cross 的核心库,为必填依赖。
-->
<Require-Bundle>${project.groupId}.Core,${project.groupId}.Controls</Require-Bundle>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/supermap/SuperMap-iDesktop-Cross.git
git@gitee.com:supermap/SuperMap-iDesktop-Cross.git
supermap
SuperMap-iDesktop-Cross
SuperMap iDesktop Cross
develop

Search