Skip to content

Commit fe77628

Browse files
Deploy
1 parent d30e410 commit fe77628

File tree

5 files changed

+18
-12
lines changed

5 files changed

+18
-12
lines changed

dist/1.x/argument-file-1.0.0.jar

5.73 KB
Binary file not shown.

pom-mavencentral.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,13 @@
5656
<artifactId>junit</artifactId>
5757
<version>4.13.2</version>
5858
<scope>test</scope>
59+
</dependency>
60+
61+
<dependency>
62+
<groupId>io.github.wniemiec-io-java</groupId>
63+
<artifactId>text-file-manager</artifactId>
64+
<version>1.0.0</version>
65+
<scope>test</scope>
5966
</dependency>
6067
</dependencies>
6168

pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
<distributionManagement>
4343
<repository>
44-
<id>github-wniemiec-io-java-argument-file</id>
44+
<id>github-wniemiec-io-java</id>
4545
<name>GitHub wniemiec-io-java Apache Maven Packages</name>
4646
<url>https://maven.pkg.github.com/wniemiec-io-java/argument-file</url>
4747
</repository>
@@ -53,6 +53,13 @@
5353
<artifactId>junit</artifactId>
5454
<version>4.13.2</version>
5555
<scope>test</scope>
56+
</dependency>
57+
58+
<dependency>
59+
<groupId>io.github.wniemiec-io-java</groupId>
60+
<artifactId>text-file-manager</artifactId>
61+
<version>1.0.0</version>
62+
<scope>test</scope>
5663
</dependency>
5764
</dependencies>
5865

src/main/java/wniemiec/io/java/ArgumentFile.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@
1717

1818
/**
1919
* Responsible for generating argument files.
20-
*
21-
* @author William Niemiec &lt; [email protected] &gt;
22-
*
23-
* @see https://docs.oracle.com/javase/9/tools/java.htm
24-
* #JSWOR-GUID-4856361B-8BFD-4964-AE84-121F5F6CF111
2520
*/
2621
public class ArgumentFile {
2722

@@ -66,9 +61,6 @@ public ArgumentFile(Path directory, String filename) {
6661
*
6762
* @throws IOException If an error occurs while writing the file
6863
* @throws IllegalArgumentException If paths is null
69-
*
70-
* @see https://docs.oracle.com/javase/9/tools/java.htm
71-
* #JSWOR-GUID-4856361B-8BFD-4964-AE84-121F5F6CF111
7264
*/
7365
public Path create(List<Path> paths) throws IOException {
7466
if (paths == null)

src/test/java/wniemiec/io/java/ArgumentFileTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package wniemiec.util.io.path;
1+
package wniemiec.io.java;
22

33
import static org.junit.Assert.assertEquals;
44
import static org.junit.Assert.assertFalse;
@@ -13,7 +13,7 @@
1313
import org.junit.Before;
1414
import org.junit.Test;
1515

16-
import wniemiec.util.io.manager.TextFileManager;
16+
import wniemiec.io.java.TextFileManager;
1717

1818
public class ArgumentFileTest {
1919

@@ -33,7 +33,7 @@ public class ArgumentFileTest {
3333
static {
3434
Path testsFolder = Path.of(".", "src", "test", "java");
3535

36-
THIS_FOLDER = testsFolder.resolve(Path.of("wniemiec", "util", "io", "path"));
36+
THIS_FOLDER = testsFolder.resolve(Path.of("wniemiec", "io", "java"));
3737

3838
WORKING_DIRECTORY = Path.of(System.getProperty("java.io.tmpdir"));
3939

0 commit comments

Comments
 (0)