Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
apollo
Project
Overview
Details
Activity
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
apollo
Commits
6f85ecac
Commit
6f85ecac
authored
May 16, 2016
by
Yiming Liu
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #192 from yiming187/build_update
Update assembly build
parents
96bcd0f5
f429b322
Hide whitespace changes
Inline
Side-by-side
Showing
31 changed files
with
182 additions
and
251 deletions
+182
-251
pom.xml
apollo-adminservice/pom.xml
+0
-29
apollo-adminservice.conf
apollo-adminservice/src/main/config/apollo-adminservice.conf
+0
-4
app.properties
apollo-adminservice/src/main/config/app.properties
+0
-3
application.yml
apollo-adminservice/src/main/resources/application.yml
+13
-0
bootstrap.yml
apollo-adminservice/src/main/resources/bootstrap.yml
+5
-0
shutdown.sh
apollo-adminservice/src/main/scripts/shutdown.sh
+0
-17
startup.sh
apollo-adminservice/src/main/scripts/startup.sh
+0
-27
pom.xml
apollo-assembly/pom.xml
+77
-0
assembly-descriptor.xml
...ssembly/src/assembly/adminservice/assembly-descriptor.xml
+12
-3
assembly-descriptor.xml
...sembly/src/assembly/configservice/assembly-descriptor.xml
+12
-3
assembly-descriptor.xml
apollo-assembly/src/assembly/portal/assembly-descriptor.xml
+12
-3
run_args.sh
apollo-assembly/src/main/scripts/adminservice/run_args.sh
+2
-0
run_args.sh
apollo-assembly/src/main/scripts/configservice/run_args.sh
+2
-0
run_args.sh
apollo-assembly/src/main/scripts/portal/run_args.sh
+2
-0
run_args.sh
apollo-assembly/src/main/scripts/run_args.sh
+2
-0
startup.sh
apollo-assembly/src/main/scripts/startup.sh
+3
-1
deploy_jenkins.sh
apollo-buildtools/src/main/scripts/deploy_jenkins.sh
+1
-0
pom.xml
apollo-configservice/pom.xml
+0
-29
apollo-configservice.conf
...o-configservice/src/main/config/apollo-configservice.conf
+0
-3
app.properties
apollo-configservice/src/main/config/app.properties
+0
-3
application.yml
apollo-configservice/src/main/resources/application.yml
+13
-0
bootstrap.yml
apollo-configservice/src/main/resources/bootstrap.yml
+7
-0
shutdown.sh
apollo-configservice/src/main/scripts/shutdown.sh
+0
-17
startup.sh
apollo-configservice/src/main/scripts/startup.sh
+0
-27
pom.xml
apollo-portal/pom.xml
+0
-30
apollo-portal.conf
apollo-portal/src/main/config/apollo-portal.conf
+0
-3
app.properties
apollo-portal/src/main/config/app.properties
+0
-3
application.yml
apollo-portal/src/main/resources/application.yml
+17
-0
shutdown.sh
apollo-portal/src/main/scripts/shutdown.sh
+0
-17
startup.sh
apollo-portal/src/main/scripts/startup.sh
+0
-27
pom.xml
pom.xml
+2
-2
No files found.
apollo-adminservice/pom.xml
View file @
6f85ecac
...
...
@@ -72,33 +72,4 @@
<scope>
test
</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<configuration>
<executable>
true
</executable>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-assembly-plugin
</artifactId>
<executions>
<execution>
<phase>
package
</phase>
<goals>
<goal>
single
</goal>
</goals>
<configuration>
<finalName>
${project.artifactId}-${project.version}-${package.environment}
</finalName>
<appendAssemblyId>
false
</appendAssemblyId>
<descriptors>
<descriptor>
src/assembly/assembly-descriptor.xml
</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
apollo-adminservice/src/main/config/apollo-adminservice.conf
deleted
100644 → 0
View file @
96bcd0f5
MODE
=
service
PID_FOLDER
=.
LOG_FOLDER
=/
opt
/
logs
/
100003172
/
\ No newline at end of file
apollo-adminservice/src/main/config/app.properties
deleted
100644 → 0
View file @
96bcd0f5
appId
=
100003172
jdkVersion
=
1.8
\ No newline at end of file
apollo-adminservice/src/main/resources/application.yml
0 → 100644
View file @
6f85ecac
spring
:
application
:
name
:
apollo-adminservice
ctrip
:
appid
:
100003172
server
:
port
:
8090
logging
:
file
:
/opt/logs/100003172/apollo-adminservice.log
\ No newline at end of file
apollo-adminservice/src/main/resources/bootstrap.yml
View file @
6f85ecac
...
...
@@ -7,3 +7,7 @@ eureka:
defaultZone
:
http://${eureka.instance.hostname}:8080/eureka/
healthcheck
:
enabled
:
true
endpoints
:
shutdown
:
enabled
:
true
\ No newline at end of file
apollo-adminservice/src/main/scripts/shutdown.sh
deleted
100644 → 0
View file @
96bcd0f5
#!/bin/bash
SERVICE_NAME
=
apollo-adminservice
if
[[
-z
"
$JAVA_HOME
"
&&
-d
/usr/java/latest/
]]
;
then
export
JAVA_HOME
=
/usr/java/latest/
fi
cd
`
dirname
$0
`
/..
if
[[
!
-f
$SERVICE_NAME
".jar"
&&
-d
current
]]
;
then
cd
current
fi
if
[[
-f
$SERVICE_NAME
".jar"
]]
;
then
chmod
a+x
$SERVICE_NAME
".jar"
./
$SERVICE_NAME
".jar"
stop
fi
apollo-adminservice/src/main/scripts/startup.sh
deleted
100644 → 0
View file @
96bcd0f5
#!/bin/bash
SERVICE_NAME
=
apollo-adminservice
VERSION
=
0.0.1-SNAPSHOT
PATH_TO_JAR
=
$SERVICE_NAME
"-"
$VERSION
".jar"
export
JAVA_OPTS
=
"-server -Xms4096m -Xmx4096m -Xss256k -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=384m -XX:NewSize=1536m -XX:MaxNewSize=1536m -XX:SurvivorRatio=22 -XX:+UseParNewGC -XX:ParallelGCThreads=4 -XX:MaxTenuringThreshold=9 -XX:+UseConcMarkSweepGC -XX:+DisableExplicitGC -XX:+UseCMSInitiatingOccupancyOnly -XX:+ScavengeBeforeFullGC -XX:+UseCMSCompactAtFullCollection -XX:+CMSParallelRemarkEnabled -XX:CMSFullGCsBeforeCompaction=9 -XX:CMSInitiatingOccupancyFraction=60 -XX:+CMSClassUnloadingEnabled -XX:SoftRefLRUPolicyMSPerMB=0 -XX:-ReduceInitialCardMarks -XX:+CMSPermGenSweepingEnabled -XX:CMSInitiatingPermOccupancyFraction=70 -XX:+ExplicitGCInvokesConcurrent -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintGCApplicationConcurrentTime -XX:+PrintHeapAtGC -XX:+HeapDumpOnOutOfMemoryError -XX:-OmitStackTraceInFastThrow -Duser.timezone=Asia/Shanghai -Dclient.encoding.override=UTF-8 -Dfile.encoding=UTF-8"
export
JAVA_OPTS
=
"
$JAVA_OPTS
-Xloggc:/opt/logs/100003172/heap_trace.txt -XX:HeapDumpPath=/opt/logs/100003172/HeapDumpOnOutOfMemoryError/"
if
[[
-z
"
$JAVA_HOME
"
&&
-d
/usr/java/latest/
]]
;
then
export
JAVA_HOME
=
/usr/java/latest/
fi
cd
`
dirname
$0
`
/..
if
[[
!
-f
PATH_TO_JAR
&&
-d
current
]]
;
then
cd
current
fi
if
[[
-f
$SERVICE_NAME
".jar"
]]
;
then
rm
-rf
$SERVICE_NAME
".jar"
fi
ln
$PATH_TO_JAR
$SERVICE_NAME
".jar"
chmod
a+x
$SERVICE_NAME
".jar"
./
$SERVICE_NAME
".jar"
start
exit
0
;
apollo-assembly/pom.xml
View file @
6f85ecac
...
...
@@ -62,4 +62,81 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>
configservice
</id>
<build>
<plugins>
<plugin>
<artifactId>
maven-assembly-plugin
</artifactId>
<executions>
<execution>
<phase>
package
</phase>
<goals>
<goal>
single
</goal>
</goals>
<configuration>
<finalName>
${project.artifactId}-${project.version}-${package.environment}
</finalName>
<appendAssemblyId>
false
</appendAssemblyId>
<descriptors>
<descriptor>
src/assembly/configservice/assembly-descriptor.xml
</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>
adminservice
</id>
<build>
<plugins>
<plugin>
<artifactId>
maven-assembly-plugin
</artifactId>
<executions>
<execution>
<phase>
package
</phase>
<goals>
<goal>
single
</goal>
</goals>
<configuration>
<finalName>
${project.artifactId}-${project.version}-${package.environment}
</finalName>
<appendAssemblyId>
false
</appendAssemblyId>
<descriptors>
<descriptor>
src/assembly/adminservice/assembly-descriptor.xml
</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>
portal
</id>
<build>
<plugins>
<plugin>
<artifactId>
maven-assembly-plugin
</artifactId>
<executions>
<execution>
<phase>
package
</phase>
<goals>
<goal>
single
</goal>
</goals>
<configuration>
<finalName>
${project.artifactId}-${project.version}-${package.environment}
</finalName>
<appendAssemblyId>
false
</appendAssemblyId>
<descriptors>
<descriptor>
src/assembly/portal/assembly-descriptor.xml
</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
apollo-a
dminservice/src/assembly
/assembly-descriptor.xml
→
apollo-a
ssembly/src/assembly/adminservice
/assembly-descriptor.xml
View file @
6f85ecac
...
...
@@ -2,7 +2,7 @@
xmlns=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"
>
<id>
apollo-a
dminservice
</id>
<id>
apollo-a
ssembly
</id>
<formats>
<format>
zip
</format>
</formats>
...
...
@@ -10,6 +10,15 @@
<fileSets>
<!--scripts -->
<fileSet>
<directory>
src/main/scripts/adminservice
</directory>
<outputDirectory>
scripts
</outputDirectory>
<includes>
<include>
*.sh
</include>
</includes>
<fileMode>
0755
</fileMode>
<lineEnding>
unix
</lineEnding>
</fileSet>
<fileSet>
<directory>
src/main/scripts
</directory>
<outputDirectory>
scripts
</outputDirectory>
<includes>
...
...
@@ -22,7 +31,7 @@
<directory>
src/main/config
</directory>
<outputDirectory>
config
</outputDirectory>
<excludes>
<exclude>
apollo-a
dminservice
.conf
</exclude>
<exclude>
apollo-a
ssembly
.conf
</exclude>
</excludes>
<lineEnding>
unix
</lineEnding>
</fileSet>
...
...
@@ -30,7 +39,7 @@
<directory>
src/main/config
</directory>
<outputDirectory>
/
</outputDirectory>
<includes>
<include>
apollo-a
dminservice
.conf
</include>
<include>
apollo-a
ssembly
.conf
</include>
</includes>
<lineEnding>
unix
</lineEnding>
</fileSet>
...
...
apollo-
configservice/src/assembly
/assembly-descriptor.xml
→
apollo-
assembly/src/assembly/configservice
/assembly-descriptor.xml
View file @
6f85ecac
...
...
@@ -2,7 +2,7 @@
xmlns=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"
>
<id>
apollo-
configservice
</id>
<id>
apollo-
assembly
</id>
<formats>
<format>
zip
</format>
</formats>
...
...
@@ -10,6 +10,15 @@
<fileSets>
<!--scripts -->
<fileSet>
<directory>
src/main/scripts/configservice
</directory>
<outputDirectory>
scripts
</outputDirectory>
<includes>
<include>
*.sh
</include>
</includes>
<fileMode>
0755
</fileMode>
<lineEnding>
unix
</lineEnding>
</fileSet>
<fileSet>
<directory>
src/main/scripts
</directory>
<outputDirectory>
scripts
</outputDirectory>
<includes>
...
...
@@ -22,7 +31,7 @@
<directory>
src/main/config
</directory>
<outputDirectory>
config
</outputDirectory>
<excludes>
<exclude>
apollo-
configservice
.conf
</exclude>
<exclude>
apollo-
assembly
.conf
</exclude>
</excludes>
<lineEnding>
unix
</lineEnding>
</fileSet>
...
...
@@ -30,7 +39,7 @@
<directory>
src/main/config
</directory>
<outputDirectory>
/
</outputDirectory>
<includes>
<include>
apollo-
configservice
.conf
</include>
<include>
apollo-
assembly
.conf
</include>
</includes>
<lineEnding>
unix
</lineEnding>
</fileSet>
...
...
apollo-
portal/src/assembly
/assembly-descriptor.xml
→
apollo-
assembly/src/assembly/portal
/assembly-descriptor.xml
View file @
6f85ecac
...
...
@@ -2,7 +2,7 @@
xmlns=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"
>
<id>
apollo-
portal
</id>
<id>
apollo-
assembly
</id>
<formats>
<format>
zip
</format>
</formats>
...
...
@@ -10,6 +10,15 @@
<fileSets>
<!--scripts -->
<fileSet>
<directory>
src/main/scripts/portal
</directory>
<outputDirectory>
scripts
</outputDirectory>
<includes>
<include>
*.sh
</include>
</includes>
<fileMode>
0755
</fileMode>
<lineEnding>
unix
</lineEnding>
</fileSet>
<fileSet>
<directory>
src/main/scripts
</directory>
<outputDirectory>
scripts
</outputDirectory>
<includes>
...
...
@@ -22,7 +31,7 @@
<directory>
src/main/config
</directory>
<outputDirectory>
config
</outputDirectory>
<excludes>
<exclude>
apollo-
portal
.conf
</exclude>
<exclude>
apollo-
assembly
.conf
</exclude>
</excludes>
<lineEnding>
unix
</lineEnding>
</fileSet>
...
...
@@ -30,7 +39,7 @@
<directory>
src/main/config
</directory>
<outputDirectory>
/
</outputDirectory>
<includes>
<include>
apollo-
portal
.conf
</include>
<include>
apollo-
assembly
.conf
</include>
</includes>
<lineEnding>
unix
</lineEnding>
</fileSet>
...
...
apollo-assembly/src/main/scripts/adminservice/run_args.sh
0 → 100644
View file @
6f85ecac
#!/bin/bash
RUN_ARGS
=
'--adminservice'
apollo-assembly/src/main/scripts/configservice/run_args.sh
0 → 100644
View file @
6f85ecac
#!/bin/bash
RUN_ARGS
=
'--configservice'
apollo-assembly/src/main/scripts/portal/run_args.sh
0 → 100644
View file @
6f85ecac
#!/bin/bash
RUN_ARGS
=
'--portal'
apollo-assembly/src/main/scripts/run_args.sh
0 → 100644
View file @
6f85ecac
#!/bin/bash
RUN_ARGS
=
'--configservice --adminservice --portal'
apollo-assembly/src/main/scripts/startup.sh
View file @
6f85ecac
...
...
@@ -20,8 +20,10 @@ if [[ -f $SERVICE_NAME".jar" ]]; then
rm
-rf
$SERVICE_NAME
".jar"
fi
source
./scripts/run_args.sh
ln
$PATH_TO_JAR
$SERVICE_NAME
".jar"
chmod
a+x
$SERVICE_NAME
".jar"
./
$SERVICE_NAME
".jar"
start
./
$SERVICE_NAME
".jar"
start
$RUN_ARGS
exit
0
;
apollo-buildtools/src/main/scripts/deploy_jenkins.sh
View file @
6f85ecac
...
...
@@ -44,6 +44,7 @@ ln -s $APP_RELEASE_DIR $APP_DIR
chmod
+x
$APP_STARTUP_SCRIPT
chmod
+x
$APP_SHUTDOWN_SCRIPT
env
spring.profiles.active
=
dev bash
$APP_SHUTDOWN_SCRIPT
$APP_STARTUP_SCRIPT
wait
apollo-configservice/pom.xml
View file @
6f85ecac
...
...
@@ -73,33 +73,4 @@
<scope>
test
</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<configuration>
<executable>
true
</executable>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-assembly-plugin
</artifactId>
<executions>
<execution>
<phase>
package
</phase>
<goals>
<goal>
single
</goal>
</goals>
<configuration>
<finalName>
${project.artifactId}-${project.version}-${package.environment}
</finalName>
<appendAssemblyId>
false
</appendAssemblyId>
<descriptors>
<descriptor>
src/assembly/assembly-descriptor.xml
</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
apollo-configservice/src/main/config/apollo-configservice.conf
deleted
100644 → 0
View file @
96bcd0f5
MODE
=
service
PID_FOLDER
=.
LOG_FOLDER
=/
opt
/
logs
/
100003171
/
apollo-configservice/src/main/config/app.properties
deleted
100644 → 0
View file @
96bcd0f5
appId
=
100003171
jdkVersion
=
1.8
\ No newline at end of file
apollo-configservice/src/main/resources/application.yml
0 → 100644
View file @
6f85ecac
spring
:
application
:
name
:
apollo-configservice
ctrip
:
appid
:
100003171
server
:
port
:
8080
logging
:
file
:
/opt/logs/100003171/apollo-configservice.log
\ No newline at end of file
apollo-configservice/src/main/resources/bootstrap.yml
View file @
6f85ecac
...
...
@@ -2,8 +2,14 @@ eureka:
instance
:
hostname
:
${hostname:localhost}
preferIpAddress
:
true
server
:
enableSelfPreservation
:
false
client
:
serviceUrl
:
defaultZone
:
http://${eureka.instance.hostname}:8080/eureka/
healthcheck
:
enabled
:
true
endpoints
:
shutdown
:
enabled
:
true
\ No newline at end of file
apollo-configservice/src/main/scripts/shutdown.sh
deleted
100644 → 0
View file @
96bcd0f5
#!/bin/bash
SERVICE_NAME
=
apollo-configservice
if
[[
-z
"
$JAVA_HOME
"
&&
-d
/usr/java/latest/
]]
;
then
export
JAVA_HOME
=
/usr/java/latest/
fi
cd
`
dirname
$0
`
/..
if
[[
!
-f
$SERVICE_NAME
".jar"
&&
-d
current
]]
;
then
cd
current
fi
if
[[
-f
$SERVICE_NAME
".jar"
]]
;
then
chmod
a+x
$SERVICE_NAME
".jar"
./
$SERVICE_NAME
".jar"
stop
fi
apollo-configservice/src/main/scripts/startup.sh
deleted
100644 → 0
View file @
96bcd0f5
#!/bin/bash
SERVICE_NAME
=
apollo-configservice
VERSION
=
0.0.1-SNAPSHOT
PATH_TO_JAR
=
$SERVICE_NAME
"-"
$VERSION
".jar"
export
JAVA_OPTS
=
"-server -Xms4096m -Xmx4096m -Xss256k -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=384m -XX:NewSize=1536m -XX:MaxNewSize=1536m -XX:SurvivorRatio=22 -XX:+UseParNewGC -XX:ParallelGCThreads=4 -XX:MaxTenuringThreshold=9 -XX:+UseConcMarkSweepGC -XX:+DisableExplicitGC -XX:+UseCMSInitiatingOccupancyOnly -XX:+ScavengeBeforeFullGC -XX:+UseCMSCompactAtFullCollection -XX:+CMSParallelRemarkEnabled -XX:CMSFullGCsBeforeCompaction=9 -XX:CMSInitiatingOccupancyFraction=60 -XX:+CMSClassUnloadingEnabled -XX:SoftRefLRUPolicyMSPerMB=0 -XX:-ReduceInitialCardMarks -XX:+CMSPermGenSweepingEnabled -XX:CMSInitiatingPermOccupancyFraction=70 -XX:+ExplicitGCInvokesConcurrent -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintGCApplicationConcurrentTime -XX:+PrintHeapAtGC -XX:+HeapDumpOnOutOfMemoryError -XX:-OmitStackTraceInFastThrow -Duser.timezone=Asia/Shanghai -Dclient.encoding.override=UTF-8 -Dfile.encoding=UTF-8"
export
JAVA_OPTS
=
"
$JAVA_OPTS
-Xloggc:/opt/logs/100003171/heap_trace.txt -XX:HeapDumpPath=/opt/logs/100003171/HeapDumpOnOutOfMemoryError/"
if
[[
-z
"
$JAVA_HOME
"
&&
-d
/usr/java/latest/
]]
;
then
export
JAVA_HOME
=
/usr/java/latest/
fi
cd
`
dirname
$0
`
/..
if
[[
!
-f
PATH_TO_JAR
&&
-d
current
]]
;
then
cd
current
fi
if
[[
-f
$SERVICE_NAME
".jar"
]]
;
then
rm
-rf
$SERVICE_NAME
".jar"
fi
ln
$PATH_TO_JAR
$SERVICE_NAME
".jar"
chmod
a+x
$SERVICE_NAME
".jar"
./
$SERVICE_NAME
".jar"
start
exit
0
;
apollo-portal/pom.xml
View file @
6f85ecac
...
...
@@ -24,34 +24,4 @@
<scope>
test
</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<configuration>
<executable>
true
</executable>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-assembly-plugin
</artifactId>
<executions>
<execution>
<phase>
package
</phase>
<goals>
<goal>
single
</goal>
</goals>
<configuration>
<finalName>
${project.artifactId}-${project.version}-${package.environment}
</finalName>
<appendAssemblyId>
false
</appendAssemblyId>
<descriptors>
<descriptor>
src/assembly/assembly-descriptor.xml
</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
apollo-portal/src/main/config/apollo-portal.conf
deleted
100644 → 0
View file @
96bcd0f5
MODE
=
service
PID_FOLDER
=.
LOG_FOLDER
=/
opt
/
logs
/
100003173
/
apollo-portal/src/main/config/app.properties
deleted
100644 → 0
View file @
96bcd0f5
appId
=
100003171
jdkVersion
=
1.8
\ No newline at end of file
apollo-portal/src/main/resources/application.yml
0 → 100644
View file @
6f85ecac
spring
:
application
:
name
:
apollo-portal
ctrip
:
appid
:
100003173
server
:
port
:
8070
logging
:
file
:
/opt/logs/100003173/apollo-portal.log
endpoints
:
shutdown
:
enabled
:
true
\ No newline at end of file
apollo-portal/src/main/scripts/shutdown.sh
deleted
100644 → 0
View file @
96bcd0f5
#!/bin/bash
SERVICE_NAME
=
apollo-portal
if
[[
-z
"
$JAVA_HOME
"
&&
-d
/usr/java/latest/
]]
;
then
export
JAVA_HOME
=
/usr/java/latest/
fi
cd
`
dirname
$0
`
/..
if
[[
!
-f
$SERVICE_NAME
".jar"
&&
-d
current
]]
;
then
cd
current
fi
if
[[
-f
$SERVICE_NAME
".jar"
]]
;
then
chmod
a+x
$SERVICE_NAME
".jar"
./
$SERVICE_NAME
".jar"
stop
fi
apollo-portal/src/main/scripts/startup.sh
deleted
100644 → 0
View file @
96bcd0f5
#!/bin/bash
SERVICE_NAME
=
apollo-portal
VERSION
=
0.0.1-SNAPSHOT
PATH_TO_JAR
=
$SERVICE_NAME
"-"
$VERSION
".jar"
export
JAVA_OPTS
=
"-server -Xms4096m -Xmx4096m -Xss256k -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=384m -XX:NewSize=1536m -XX:MaxNewSize=1536m -XX:SurvivorRatio=22 -XX:+UseParNewGC -XX:ParallelGCThreads=4 -XX:MaxTenuringThreshold=9 -XX:+UseConcMarkSweepGC -XX:+DisableExplicitGC -XX:+UseCMSInitiatingOccupancyOnly -XX:+ScavengeBeforeFullGC -XX:+UseCMSCompactAtFullCollection -XX:+CMSParallelRemarkEnabled -XX:CMSFullGCsBeforeCompaction=9 -XX:CMSInitiatingOccupancyFraction=60 -XX:+CMSClassUnloadingEnabled -XX:SoftRefLRUPolicyMSPerMB=0 -XX:-ReduceInitialCardMarks -XX:+CMSPermGenSweepingEnabled -XX:CMSInitiatingPermOccupancyFraction=70 -XX:+ExplicitGCInvokesConcurrent -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintGCApplicationConcurrentTime -XX:+PrintHeapAtGC -XX:+HeapDumpOnOutOfMemoryError -XX:-OmitStackTraceInFastThrow -Duser.timezone=Asia/Shanghai -Dclient.encoding.override=UTF-8 -Dfile.encoding=UTF-8"
export
JAVA_OPTS
=
"
$JAVA_OPTS
-Xloggc:/opt/logs/100003173/heap_trace.txt -XX:HeapDumpPath=/opt/logs/100003173/HeapDumpOnOutOfMemoryError/"
if
[[
-z
"
$JAVA_HOME
"
&&
-d
/usr/java/latest/
]]
;
then
export
JAVA_HOME
=
/usr/java/latest/
fi
cd
`
dirname
$0
`
/..
if
[[
!
-f
PATH_TO_JAR
&&
-d
current
]]
;
then
cd
current
fi
if
[[
-f
$SERVICE_NAME
".jar"
]]
;
then
rm
-rf
$SERVICE_NAME
".jar"
fi
ln
$PATH_TO_JAR
$SERVICE_NAME
".jar"
chmod
a+x
$SERVICE_NAME
".jar"
./
$SERVICE_NAME
".jar"
start
exit
0
;
pom.xml
View file @
6f85ecac
...
...
@@ -81,7 +81,7 @@
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<java.version>
1.8
</java.version>
<jetty.version>
9.
2.15.v20160210
</jetty.version>
<jetty.version>
9.
3.8.v20160314
</jetty.version>
<github.global.server>
github
</github.global.server>
<github.global.oauth2Token>
${env.GITHUB_OAUTH_TOKEN}
</github.global.oauth2Token>
</properties>
...
...
@@ -250,7 +250,7 @@
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<version>
1.3.
4
.RELEASE
</version>
<version>
1.3.
5
.RELEASE
</version>
<executions>
<execution>
<goals>
...
...
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