Skip to content

Commit

Permalink
Merge pull request #84 from sualeh/updates
Browse files Browse the repository at this point in the history
Update copyright
  • Loading branch information
sualeh authored Dec 26, 2023
2 parents 366b4f6 + b27c2af commit 7c36be0
Show file tree
Hide file tree
Showing 17 changed files with 49 additions and 17 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/quick_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,10 @@ jobs:
--no-transfer-progress \
--batch-mode \
package
- name: Test & publish code coverage
uses: paambaati/codeclimate-action@v5.0.0
env:
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
JACOCO_SOURCE_PATH: "${{github.workspace}}/src/main/java"
with:
coverageLocations: ${{github.workspace}}/target/site/jacoco/jacoco.xml:jacoco
25 changes: 24 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,11 @@
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down Expand Up @@ -211,13 +216,31 @@
<additionalOptions>
<additionalOption>-Xdoclint:none</additionalOption>
</additionalOptions>
<bottom>Copyright © 2014-2023 {organizationName}. All
<bottom>Copyright © 2014-2024 {organizationName}. All
rights reserved.</bottom>
<doctitle>Credit Card Number ${project.version}</doctitle>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package us.fatehi.magnetictrack;
Expand Down Expand Up @@ -124,7 +124,9 @@ public BankCard toBankCard() {
return cardInfo;
}

/** @see java.lang.Object#toString() */
/**
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
final String NEWLINE = System.getProperty("line.separator");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package us.fatehi.magnetictrack;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/us/fatehi/magnetictrack/BaseTrackData.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package us.fatehi.magnetictrack;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/us/fatehi/magnetictrack/Track1FormatB.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package us.fatehi.magnetictrack;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/us/fatehi/magnetictrack/Track2.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package us.fatehi.magnetictrack;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/us/fatehi/magnetictrack/Track3.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package us.fatehi.magnetictrack;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/example/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package com.example;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/example/SampleCode1.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package com.example;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package us.fatehi.magnetictrack;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package us.fatehi.magnetictrack;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/us/fatehi/test/magnetictrack/ManyTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package us.fatehi.test.magnetictrack;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package us.fatehi.test.magnetictrack;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package us.fatehi.test.magnetictrack;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/us/fatehi/test/magnetictrack/Track2Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package us.fatehi.test.magnetictrack;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/us/fatehi/test/magnetictrack/Track3Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*
* Magnetic Track Parser
* https://github.com/sualeh/magnetictrackparser
* Copyright (c) 2014-2023, Sualeh Fatehi.
* Copyright (c) 2014-2024, Sualeh Fatehi.
*
*/
package us.fatehi.test.magnetictrack;
Expand Down

0 comments on commit 7c36be0

Please sign in to comment.