Skip to content

Commit cc9195e

Browse files
committed
Merge pull request #64 from guidomedina/master
Extracted variable, bump slf4j and plugins versions Conflicts: pom.xml
1 parent f7cbd36 commit cc9195e

File tree

11 files changed

+24
-22
lines changed

11 files changed

+24
-22
lines changed

pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,21 +70,23 @@
7070
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
7171
<jdkLevel>1.6</jdkLevel>
7272
<slf4j.version>1.7.18</slf4j.version>
73+
<slf4j.version>1.7.19</slf4j.version>
7374
<mainClass/>
7475

7576
<maven-resources-plugin-version>2.7</maven-resources-plugin-version>
7677
<maven-compiler-plugin-version>3.5.1</maven-compiler-plugin-version>
7778
<maven-jar-plugin-version>2.6</maven-jar-plugin-version>
7879
<maven-surefire-plugin-version>2.19.1</maven-surefire-plugin-version>
7980
<maven-pmd-plugin-version>3.6</maven-pmd-plugin-version>
80-
<maven-source-plugin-version>2.4</maven-source-plugin-version>
81+
<maven-source-plugin-version>3.0.0</maven-source-plugin-version>
8182
<maven-javadoc-plugin-version>2.10.3</maven-javadoc-plugin-version>
8283
<maven-shade-plugin-version>2.4.3</maven-shade-plugin-version>
8384
<maven-assembly-plugin-version>2.6</maven-assembly-plugin-version>
8485
<maven-bundle-plugin-version>2.5.3</maven-bundle-plugin-version>
8586
<maven-gpg-plugin-version>1.6</maven-gpg-plugin-version>
8687
<maven-deploy-plugin-version>2.8.2</maven-deploy-plugin-version>
87-
<nexus-staging-maven-plugin-version>1.6.6</nexus-staging-maven-plugin-version>
88+
<nexus-staging-maven-plugin-version>1.6.7</nexus-staging-maven-plugin-version>
89+
<build-helper-maven-plugin-version>1.10</build-helper-maven-plugin-version>
8890
</properties>
8991

9092
<build>

quickfixj-core/src/main/java/quickfix/DataDictionary.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -454,8 +454,8 @@ public boolean isDataField(int field) {
454454
}
455455

456456
private boolean isMultipleValueStringField(int field) {
457-
return (fieldTypes.get(field) == FieldType.MultipleValueString)
458-
|| (fieldTypes.get(field) == FieldType.MultipleStringValue);
457+
final FieldType fieldType = fieldTypes.get(field);
458+
return fieldType == FieldType.MultipleValueString || fieldType == FieldType.MultipleStringValue;
459459
}
460460

461461
/**

quickfixj-messages/quickfixj-messages-fix40/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<plugin>
2828
<groupId>org.codehaus.mojo</groupId>
2929
<artifactId>build-helper-maven-plugin</artifactId>
30-
<version>1.9.1</version>
30+
<version>${build-helper-maven-plugin-version}</version>
3131
<executions>
3232
<execution>
3333
<phase>prepare-package</phase>
@@ -81,7 +81,7 @@
8181
<plugin>
8282
<artifactId>maven-source-plugin</artifactId>
8383
<groupId>org.apache.maven.plugins</groupId>
84-
<version>2.4</version>
84+
<version>${maven-source-plugin-version}</version>
8585
<configuration>
8686
<includes>
8787
<include>FIX40.xml</include>

quickfixj-messages/quickfixj-messages-fix41/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<plugin>
2828
<groupId>org.codehaus.mojo</groupId>
2929
<artifactId>build-helper-maven-plugin</artifactId>
30-
<version>1.9.1</version>
30+
<version>${build-helper-maven-plugin-version}</version>
3131
<executions>
3232
<execution>
3333
<phase>prepare-package</phase>
@@ -82,7 +82,7 @@
8282
<plugin>
8383
<artifactId>maven-source-plugin</artifactId>
8484
<groupId>org.apache.maven.plugins</groupId>
85-
<version>2.4</version>
85+
<version>${maven-source-plugin-version}</version>
8686
<configuration>
8787
<includes>
8888
<include>FIX41.xml</include>

quickfixj-messages/quickfixj-messages-fix42/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<plugin>
2828
<groupId>org.codehaus.mojo</groupId>
2929
<artifactId>build-helper-maven-plugin</artifactId>
30-
<version>1.9.1</version>
30+
<version>${build-helper-maven-plugin-version}</version>
3131
<executions>
3232
<execution>
3333
<phase>prepare-package</phase>
@@ -82,7 +82,7 @@
8282
<plugin>
8383
<artifactId>maven-source-plugin</artifactId>
8484
<groupId>org.apache.maven.plugins</groupId>
85-
<version>2.4</version>
85+
<version>${maven-source-plugin-version}</version>
8686
<configuration>
8787
<includes>
8888
<include>FIX42.xml</include>

quickfixj-messages/quickfixj-messages-fix43/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<plugin>
2828
<groupId>org.codehaus.mojo</groupId>
2929
<artifactId>build-helper-maven-plugin</artifactId>
30-
<version>1.9.1</version>
30+
<version>${build-helper-maven-plugin-version}</version>
3131
<executions>
3232
<execution>
3333
<phase>prepare-package</phase>
@@ -82,7 +82,7 @@
8282
<plugin>
8383
<artifactId>maven-source-plugin</artifactId>
8484
<groupId>org.apache.maven.plugins</groupId>
85-
<version>2.4</version>
85+
<version>${maven-source-plugin-version}</version>
8686
<configuration>
8787
<includes>
8888
<include>FIX43.xml</include>

quickfixj-messages/quickfixj-messages-fix44/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<plugin>
2828
<groupId>org.codehaus.mojo</groupId>
2929
<artifactId>build-helper-maven-plugin</artifactId>
30-
<version>1.9.1</version>
30+
<version>${build-helper-maven-plugin-version}</version>
3131
<executions>
3232
<execution>
3333
<phase>prepare-package</phase>
@@ -83,7 +83,7 @@
8383
<plugin>
8484
<artifactId>maven-source-plugin</artifactId>
8585
<groupId>org.apache.maven.plugins</groupId>
86-
<version>2.4</version>
86+
<version>${maven-source-plugin-version}</version>
8787
<configuration>
8888
<includes>
8989
<include>FIX44.xml</include>

quickfixj-messages/quickfixj-messages-fix50/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<plugin>
2828
<groupId>org.codehaus.mojo</groupId>
2929
<artifactId>build-helper-maven-plugin</artifactId>
30-
<version>1.9.1</version>
30+
<version>${build-helper-maven-plugin-version}</version>
3131
<executions>
3232
<execution>
3333
<phase>prepare-package</phase>
@@ -82,7 +82,7 @@
8282
<plugin>
8383
<artifactId>maven-source-plugin</artifactId>
8484
<groupId>org.apache.maven.plugins</groupId>
85-
<version>2.4</version>
85+
<version>${maven-source-plugin-version}</version>
8686
<configuration>
8787
<includes>
8888
<include>FIX50.xml</include>

quickfixj-messages/quickfixj-messages-fix50sp1/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<plugin>
2828
<groupId>org.codehaus.mojo</groupId>
2929
<artifactId>build-helper-maven-plugin</artifactId>
30-
<version>1.9.1</version>
30+
<version>${build-helper-maven-plugin-version}</version>
3131
<executions>
3232
<execution>
3333
<phase>prepare-package</phase>
@@ -83,7 +83,7 @@
8383
<plugin>
8484
<artifactId>maven-source-plugin</artifactId>
8585
<groupId>org.apache.maven.plugins</groupId>
86-
<version>2.4</version>
86+
<version>${maven-source-plugin-version}</version>
8787
<configuration>
8888
<includes>
8989
<include>FIX50SP1.xml</include>

quickfixj-messages/quickfixj-messages-fix50sp2/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<plugin>
2828
<groupId>org.codehaus.mojo</groupId>
2929
<artifactId>build-helper-maven-plugin</artifactId>
30-
<version>1.9.1</version>
30+
<version>${build-helper-maven-plugin-version}</version>
3131
<executions>
3232
<execution>
3333
<phase>prepare-package</phase>
@@ -83,7 +83,7 @@
8383
<plugin>
8484
<artifactId>maven-source-plugin</artifactId>
8585
<groupId>org.apache.maven.plugins</groupId>
86-
<version>2.4</version>
86+
<version>${maven-source-plugin-version}</version>
8787
<configuration>
8888
<includes>
8989
<include>FIX50SP2.xml</include>

0 commit comments

Comments
 (0)