Browse Source

Add property slf4j.version

tags/release-2.6.0
Decebal Suiu 5 years ago
parent
commit
39219b3ba4
3 changed files with 4 additions and 6 deletions
  1. 1
    4
      demo/app/pom.xml
  2. 2
    2
      pf4j/pom.xml
  3. 1
    0
      pom.xml

+ 1
- 4
demo/app/pom.xml View File



<properties> <properties>
<main.class>org.pf4j.demo.Boot</main.class> <main.class>org.pf4j.demo.Boot</main.class>
<slf4j.version>1.7.5</slf4j.version>
</properties> </properties>


<build> <build>
<version>2.3</version> <version>2.3</version>
<configuration> <configuration>
<descriptors> <descriptors>
<descriptor>
src/main/assembly/assembly.xml
</descriptor>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors> </descriptors>
<appendAssemblyId>false</appendAssemblyId> <appendAssemblyId>false</appendAssemblyId>
</configuration> </configuration>

+ 2
- 2
pf4j/pom.xml View File

<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId> <artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
<version>${slf4j.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId> <artifactId>slf4j-log4j12</artifactId>
<version>1.7.25</version>
<version>${slf4j.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>

+ 1
- 0
pom.xml View File

<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.7</java.version> <java.version>1.7</java.version>
<slf4j.version>1.7.25</slf4j.version>


<junit.version>4.12</junit.version> <junit.version>4.12</junit.version>
<mockito.version>2.0.28-beta</mockito.version> <mockito.version>2.0.28-beta</mockito.version>

Loading…
Cancel
Save