Skip to content

Commit

Permalink
Merge pull request #14 from Kasean/5-creating-an-artifact-processor
Browse files Browse the repository at this point in the history
create artifact-processor module (#5)
Kasean authored Dec 21, 2023
2 parents 8a529c6 + addf609 commit e94980c
Showing 4 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions artifact-processor/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
plugins {
id 'java'
}

group = 'org.student'
version = '1.0-SNAPSHOT'

repositories {
mavenCentral()
}

dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}

test {
useJUnitPlatform()
}
7 changes: 7 additions & 0 deletions artifact-processor/src/main/java/org/student/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package org.student;

public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
rootProject.name = "FileGarbage"
include 'core-back-end'
include 'archiver'
include 'artifact-processor'

0 comments on commit e94980c

Please sign in to comment.