Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
task-kolon
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
piplus-v3
task-kolon
Commits
9f3732c9
Commit
9f3732c9
authored
Apr 22, 2016
by
strong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加部分包依赖的pom.xml配置,增加打包shell文件
parent
e2d97fef
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
86 additions
and
25 deletions
+86
-25
.classpath
.classpath
+1
-1
.project
.project
+2
-2
org.eclipse.jdt.core.prefs
.settings/org.eclipse.jdt.core.prefs
+3
-3
package.sh
package.sh
+1
-0
pom.xml
pom.xml
+79
-19
No files found.
.classpath
View file @
9f3732c9
...
...
@@ -22,7 +22,7 @@
<attribute
name=
"maven.pomderived"
value=
"true"
/>
</attributes>
</classpathentry>
<classpathentry
kind=
"con"
path=
"org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.
6
"
>
<classpathentry
kind=
"con"
path=
"org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.
8
"
>
<attributes>
<attribute
name=
"maven.pomderived"
value=
"true"
/>
</attributes>
...
...
.project
View file @
9f3732c9
...
...
@@ -16,12 +16,12 @@
</arguments>
</buildCommand>
<buildCommand>
<name>
org.
eclipse.m2e.core.maven2B
uilder
</name>
<name>
org.
springframework.ide.eclipse.core.springb
uilder
</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>
org.
springframework.ide.eclipse.core.springb
uilder
</name>
<name>
org.
eclipse.m2e.core.maven2B
uilder
</name>
<arguments>
</arguments>
</buildCommand>
...
...
.settings/org.eclipse.jdt.core.prefs
View file @
9f3732c9
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.
6
org.eclipse.jdt.core.compiler.compliance=1.
6
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.
8
org.eclipse.jdt.core.compiler.compliance=1.
8
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.source=1.
6
org.eclipse.jdt.core.compiler.source=1.
8
package.sh
0 → 100755
View file @
9f3732c9
mvn clean package
-P
standalone
-Dmaven
.test.skip
=
true
\ No newline at end of file
pom.xml
View file @
9f3732c9
<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"
>
<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>
com.hdp.piplus
</groupId>
<artifactId>
task-kolon
</artifactId>
...
...
@@ -11,10 +12,69 @@
<artifactId>
piplus-module-user
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
net.sf.opencsv
</groupId>
<artifactId>
opencsv
</artifactId>
<version>
2.3
</version>
</dependency>
<dependency>
<groupId>
commons-net
</groupId>
<artifactId>
commons-net
</artifactId>
<version>
3.3
</version>
</dependency>
</dependencies>
<parent>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-parent
</artifactId>
<version>
1.3.3.RELEASE
</version>
</parent>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<java.version>
1.8
</java.version>
</properties>
<repositories>
<repository>
<id>
release
</id>
<name>
Internal Releases
</name>
<url>
http://nexus.wxpai.cn/content/repositories/public/
</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>
release
</id>
<name>
Internal Releases
</name>
<url>
http://nexus.wxpai.cn/content/repositories/release/
</url>
</repository>
<snapshotRepository>
<id>
deployment
</id>
<name>
Internal Releases
</name>
<url>
http://nexus.wxpai.cn/content/repositories/snapshots/
</url>
</snapshotRepository>
</distributionManagement>
<profiles>
<profile>
<id>
standalone
</id>
<activation>
<activeByDefault>
false
</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<version>
1.3.3.RELEASE
</version>
<executions>
<execution>
<goals>
<goal>
repackage
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment