Skip to content

Commit

Permalink
Order the dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jiaqi committed Sep 4, 2020
1 parent 7cb8f02 commit d58fac1
Showing 1 changed file with 22 additions and 27 deletions.
49 changes: 22 additions & 27 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,9 @@
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>runtime</scope>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -77,16 +71,6 @@
<artifactId>commons-text</artifactId>
<version>1.9</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.2.3</version>
</dependency>
<dependency>
<groupId>org.cyclopsgroup</groupId>
<artifactId>jcli</artifactId>
Expand All @@ -97,6 +81,22 @@
<artifactId>jline</artifactId>
<version>3.5.2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock</artifactId>
Expand All @@ -115,11 +115,6 @@
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
</dependencies>
<scm>
<connection>scm:git:git@github.com:jiaqi/jmxterm.git</connection>
Expand Down Expand Up @@ -179,10 +174,10 @@
<phase>site</phase>
<configuration>
<tasks>
<echo message="Copy file..." />
<echo message="Copy file..."/>
<copy todir="${basedir}/target/site">
<fileset dir="${basedir}/target"
includes="jmxterm-*-uber.jar" />
includes="jmxterm-*-uber.jar"/>
</copy>
</tasks>
</configuration>
Expand Down Expand Up @@ -298,7 +293,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore />
<ignore/>
</action>
</pluginExecution>
</pluginExecutions>
Expand Down

0 comments on commit d58fac1

Please sign in to comment.