Skip to content

Commit a27cd0d

Browse files
committed
refactor: folder struct
1 parent d74eb11 commit a27cd0d

40 files changed

+204
-831
lines changed

.idea/compiler.xml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/sonarlint/issuestore/4/4/442292b8a7efeabbe4cc176709b833b1792140ec

Whitespace-only changes.

.idea/sonarlint/issuestore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d

Whitespace-only changes.

.idea/sonarlint/issuestore/d/5/d504f9b2cf453f919611cab68c0658cce3d4302e

Whitespace-only changes.

.idea/sonarlint/issuestore/d/8/d83ae3847b7d408136086cc5e9e95f5f7c126ed5

Whitespace-only changes.

.idea/sonarlint/issuestore/index.pb

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/sonarlint/securityhotspotstore/4/4/442292b8a7efeabbe4cc176709b833b1792140ec

Whitespace-only changes.

.idea/sonarlint/securityhotspotstore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d

Whitespace-only changes.

.idea/sonarlint/securityhotspotstore/d/5/d504f9b2cf453f919611cab68c0658cce3d4302e

Whitespace-only changes.

.idea/sonarlint/securityhotspotstore/d/8/d83ae3847b7d408136086cc5e9e95f5f7c126ed5

Whitespace-only changes.

.idea/sonarlint/securityhotspotstore/index.pb

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

multiform-validator.iml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module version="4">
3+
<component name="SonarLintModuleSettings">
4+
<option name="uniqueId" value="4e0935ba-c4f2-403d-82e1-661ea2286a87" />
5+
</component>
6+
</module>

pom.xml

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
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>io.github</groupId>
8+
<artifactId>multiform-validator</artifactId>
9+
<version>0.0.1</version>
10+
11+
<properties>
12+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13+
<kotlin.code.style>official</kotlin.code.style>
14+
<kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
15+
</properties>
16+
17+
<repositories>
18+
<repository>
19+
<id>mavenCentral</id>
20+
<url>https://repo1.maven.org/maven2/</url>
21+
</repository>
22+
</repositories>
23+
24+
<build>
25+
<sourceDirectory>src/main/kotlin</sourceDirectory>
26+
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
27+
<plugins>
28+
<plugin>
29+
<groupId>org.jetbrains.kotlin</groupId>
30+
<artifactId>kotlin-maven-plugin</artifactId>
31+
<version>1.9.23</version>
32+
<executions>
33+
<execution>
34+
<id>compile</id>
35+
<phase>compile</phase>
36+
<goals>
37+
<goal>compile</goal>
38+
</goals>
39+
</execution>
40+
<execution>
41+
<id>test-compile</id>
42+
<phase>test-compile</phase>
43+
<goals>
44+
<goal>test-compile</goal>
45+
</goals>
46+
</execution>
47+
</executions>
48+
</plugin>
49+
<plugin>
50+
<artifactId>maven-surefire-plugin</artifactId>
51+
<version>2.22.2</version>
52+
</plugin>
53+
<plugin>
54+
<artifactId>maven-failsafe-plugin</artifactId>
55+
<version>2.22.2</version>
56+
</plugin>
57+
<plugin>
58+
<groupId>org.codehaus.mojo</groupId>
59+
<artifactId>exec-maven-plugin</artifactId>
60+
<version>1.6.0</version>
61+
<configuration>
62+
<mainClass>MainKt</mainClass>
63+
</configuration>
64+
</plugin>
65+
</plugins>
66+
</build>
67+
68+
<dependencies>
69+
<dependency>
70+
<groupId>org.jetbrains.kotlin</groupId>
71+
<artifactId>kotlin-test-junit5</artifactId>
72+
<version>1.9.23</version>
73+
<scope>test</scope>
74+
</dependency>
75+
<dependency>
76+
<groupId>org.junit.jupiter</groupId>
77+
<artifactId>junit-jupiter-engine</artifactId>
78+
<version>5.10.0</version>
79+
<scope>test</scope>
80+
</dependency>
81+
<dependency>
82+
<groupId>org.jetbrains.kotlin</groupId>
83+
<artifactId>kotlin-stdlib</artifactId>
84+
<version>1.9.23</version>
85+
</dependency>
86+
</dependencies>
87+
88+
</project>

src/main/java/io/multiform_validator/Ascii.java

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/main/java/io/multiform_validator/Base64.java

Lines changed: 0 additions & 27 deletions
This file was deleted.

src/main/java/io/multiform_validator/CEP.java

Lines changed: 0 additions & 35 deletions
This file was deleted.

src/main/java/io/multiform_validator/Cnpj.kt

Lines changed: 0 additions & 67 deletions
This file was deleted.

0 commit comments

Comments
 (0)