diff options
author | huangjian <huang.jian12@zte.com.cn> | 2016-09-21 11:11:23 +0800 |
---|---|---|
committer | huangjian <huang.jian12@zte.com.cn> | 2016-09-21 11:11:23 +0800 |
commit | 8f9daf8d7d866da5d7108bdf9a3bdfef25e5c7fb (patch) | |
tree | c4064e476f8630e5a816a4502f61d531d4905659 /wso2bpel-ext/wso2bpel-core/wso2bpel-mgr | |
parent | fa0950ed0c750ab307042cc1f66e5cd252be1ae2 (diff) |
1. The publish package name add system type
2. Parameter tasks is deprecated, use target instead
3. Format pom.xml
4. Modify .gitignore
5. Change groupId
Change-Id: I7e2664e7c4ed582ceb8cca128af8f1ed9f0b252c
Issue-id: OCS-59
Signed-off-by: huangjian <huang.jian12@zte.com.cn>
Diffstat (limited to 'wso2bpel-ext/wso2bpel-core/wso2bpel-mgr')
-rw-r--r-- | wso2bpel-ext/wso2bpel-core/wso2bpel-mgr/pom.xml | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/wso2bpel-ext/wso2bpel-core/wso2bpel-mgr/pom.xml b/wso2bpel-ext/wso2bpel-core/wso2bpel-mgr/pom.xml index d4b6e9f..8a9c3ad 100644 --- a/wso2bpel-ext/wso2bpel-core/wso2bpel-mgr/pom.xml +++ b/wso2bpel-ext/wso2bpel-core/wso2bpel-mgr/pom.xml @@ -18,36 +18,36 @@ <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> - <groupId>org.openo.common-services.common-utilities</groupId> + <groupId>org.openo.common-services.common-utilities.wso2bpel-ext</groupId> <artifactId>wso2bpel-core-parent</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>wso2bpel-mgr</artifactId> - <!--name>openo/commonservice/commonutilities/wso2bpel-mgr</name--> + <name>openo/commonservice/commonutilities/wso2bpel-mgr</name> <packaging>jar</packaging> <build> <plugins> - <plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> - <source>1.7</source> - <target>1.7</target> - <encoding>UTF-8</encoding> - <compilerArgs> - <arg>-verbose</arg> - <arg>-Xlint:unchecked</arg> - <arg>-Xlint:deprecation</arg> - <arg>-bootclasspath</arg> - <arg>${env.JAVA_HOME}/jre/lib/rt.jar</arg> - <arg>-extdirs</arg> - <arg>${project.basedir}/lib</arg> - </compilerArgs> - </configuration> + <source>1.7</source> + <target>1.7</target> + <encoding>UTF-8</encoding> + <compilerArgs> + <arg>-verbose</arg> + <arg>-Xlint:unchecked</arg> + <arg>-Xlint:deprecation</arg> + <arg>-bootclasspath</arg> + <arg>${env.JAVA_HOME}/jre/lib/rt.jar</arg> + <arg>-extdirs</arg> + <arg>${project.basedir}/lib</arg> + </compilerArgs> + </configuration> </plugin> <plugin> <groupId>org.eclipse.m2e</groupId> |