Skip to content

Commit

Permalink
client and core: delete apollo dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
knightliao committed Nov 25, 2015
1 parent adbf10c commit ecec04e
Show file tree
Hide file tree
Showing 47 changed files with 2,248 additions and 446 deletions.
12 changes: 7 additions & 5 deletions disconf-tool/.gitignore → disconf-client-spring/.gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
/target
/bin
/.settings
/.classpath
/.project
/target
/.settings
/doc
/*.class
/.README.md.html
/disconf
/log
/.pydevproject
/pom.xml.releaseBackup
/coverage-report
/tmp
/*.iml
/.DS_Store
.idea
6 changes: 6 additions & 0 deletions disconf-client-spring/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
disconf-client
=======

分布式配置管理客户端模块


25 changes: 25 additions & 0 deletions disconf-client-spring/deploy/package-jar.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">

<id>package</id>

<formats>
<format>jar</format>
</formats>

<includeBaseDirectory>false</includeBaseDirectory>

<fileSets>
<fileSet>
<directory>target/classes</directory>
<excludes>
<exclude>disconf.properties</exclude>
<exclude>logback.xml</exclude>
</excludes>
<outputDirectory>/</outputDirectory>
</fileSet>
</fileSets>

</assembly>
Loading

0 comments on commit ecec04e

Please sign in to comment.