Skip to content

Commit

Permalink
SNAPSHOT Initial dmvapp sample GUI app
Browse files Browse the repository at this point in the history
  • Loading branch information
carltonwhitehead committed Jun 25, 2024
1 parent 5ce0551 commit 58dcbf3
Show file tree
Hide file tree
Showing 44 changed files with 797 additions and 132 deletions.
4 changes: 2 additions & 2 deletions admin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<groupId>tech.coner.trailer</groupId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
3 changes: 2 additions & 1 deletion api-client-motorsportreg-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<groupId>tech.coner.trailer</groupId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
3 changes: 2 additions & 1 deletion api-client-motorsportreg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<groupId>tech.coner.trailer</groupId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
130 changes: 130 additions & 0 deletions buildsrc/buildsrc-kotlin-parent/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>tech.coner.trailer</groupId>
<artifactId>parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>buildsrc-kotlin-parent</artifactId>

<packaging>pom</packaging>

<modules>
<module>../../core</module>
<module>../../core-test</module>
<module>../../datasource-crispy-fish</module>
<module>../../datasource-crispy-fish-test</module>
<module>../../datasource-snoozle</module>
<module>../../api-client-motorsportreg</module>
<module>../../api-client-motorsportreg-test</module>
<module>../../datasource-motorsportreg</module>
<module>../../io</module>
<module>../../io-kodein-di</module>
<module>../../admin</module>
<module>../../io-test</module>
<module>../../presentation/presentation</module>
<module>../../presentation/presentation-text</module>
<module>../../presentation/presentation-all-kodein-di</module>
<module>../../presentation/presentation-json</module>
<module>../../io-kodein-di-test</module>
<module>../../io-testsupport</module>
<module>../../core-kodein-di</module>
<module>../../core-kodein-di-test</module>
<module>../../webapp-competition</module>
<module>../../testutil/assertk-ktor</module>
<module>../../presentation/presentation-all-testsupport-mockk</module>
<module>../../toolkit/konstraints</module>
<module>../../toolkit/presentation/presentation</module>
<module>../../toolkit/presentation/presentation-test</module>
<module>../../toolkit/presentation/presentation-testsupport</module>
<module>../../toolkit/samples/samples-common</module>
<module>../../toolkit/validation/validation</module>
<module>../../toolkit/validation/validation-testsupport</module>
<module>../../toolkit/util</module>
</modules>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kotlin.code.style>official</kotlin.code.style>
<kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
</properties>


<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
</dependency>

<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-test-jvm</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
</dependency>
<dependency>
<groupId>com.willowtreeapps.assertk</groupId>
<artifactId>assertk-jvm</artifactId>
</dependency>
<dependency>
<groupId>io.mockk</groupId>
<artifactId>mockk-jvm</artifactId>
</dependency>
</dependencies>

<repositories>
<repository>
<id>mavenCentral</id>
<url>https://repo1.maven.org/maven2/</url>
</repository>
</repositories>

<build>
<sourceDirectory>src/main/kotlin</sourceDirectory>
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>
3 changes: 2 additions & 1 deletion core-kodein-di-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<groupId>tech.coner.trailer</groupId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
3 changes: 2 additions & 1 deletion core-kodein-di/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<groupId>tech.coner.trailer</groupId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions core-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<groupId>tech.coner.trailer</groupId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>tech.coner.trailer</groupId>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
3 changes: 2 additions & 1 deletion datasource-crispy-fish-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<groupId>tech.coner.trailer</groupId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions datasource-crispy-fish/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>tech.coner.trailer</groupId>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
3 changes: 2 additions & 1 deletion datasource-motorsportreg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<groupId>tech.coner.trailer</groupId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions datasource-snoozle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<groupId>tech.coner.trailer</groupId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
3 changes: 2 additions & 1 deletion io-kodein-di-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<groupId>tech.coner.trailer</groupId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
3 changes: 2 additions & 1 deletion io-kodein-di/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<groupId>tech.coner.trailer</groupId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
3 changes: 2 additions & 1 deletion io-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<groupId>tech.coner.trailer</groupId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
3 changes: 2 additions & 1 deletion io-testsupport/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<groupId>tech.coner.trailer</groupId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions io/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>parent</artifactId>
<groupId>tech.coner.trailer</groupId>
<artifactId>buildsrc-kotlin-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<relativePath>../buildsrc/buildsrc-kotlin-parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Loading

0 comments on commit 58dcbf3

Please sign in to comment.