Skip to content

Commit 07004af

Browse files
committed
initial commit
0 parents commit 07004af

File tree

3 files changed

+60
-0
lines changed

3 files changed

+60
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# technical-task-ibanvalidator

pom.xml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>edu.task.technical</groupId>
8+
<artifactId>ibanvalidator</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
<description>Technical task</description>
11+
<packaging>jar</packaging>
12+
13+
<properties>
14+
<java.version>11</java.version>
15+
<maven.compiler.source>11</maven.compiler.source>
16+
<maven.compiler.target>11</maven.compiler.target>
17+
</properties>
18+
19+
<dependencies>
20+
21+
</dependencies>
22+
23+
<build>
24+
<plugins>
25+
<plugin>
26+
<groupId>org.apache.maven.plugins</groupId>
27+
<artifactId>maven-assembly-plugin</artifactId>
28+
<executions>
29+
<execution>
30+
<phase>package</phase>
31+
<goals>
32+
<goal>single</goal>
33+
</goals>
34+
<configuration>
35+
<archive>
36+
<manifest>
37+
<mainClass>
38+
edu.edu.task.technical.ibanvalidator.Main
39+
</mainClass>
40+
</manifest>
41+
</archive>
42+
<descriptorRefs>
43+
<descriptorRef>jar-with-dependencies</descriptorRef>
44+
</descriptorRefs>
45+
</configuration>
46+
</execution>
47+
</executions>
48+
</plugin>
49+
</plugins>
50+
</build>
51+
52+
</project>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package edu.task.technical.ibanvalidator;
2+
3+
public class Main {
4+
public static void main(String[] args) {
5+
System.out.println("Hello world");
6+
}
7+
}

0 commit comments

Comments
 (0)