Skip to content

Commit f90094a

Browse files
committed
first commit
0 parents  commit f90094a

File tree

28 files changed

+43513
-0
lines changed

28 files changed

+43513
-0
lines changed

.bloop/bloop.settings.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"javaSemanticDBVersion": "0.8.15",
3+
"semanticDBVersion": "4.7.7",
4+
"supportedScalaVersions": [
5+
"2.13.10",
6+
"2.12.17",
7+
"2.12.16",
8+
"2.12.15",
9+
"2.12.14",
10+
"2.13.7",
11+
"2.13.8",
12+
"2.13.9",
13+
"2.11.12",
14+
"2.12.10",
15+
"2.12.11",
16+
"2.12.12",
17+
"2.12.13",
18+
"2.13.3",
19+
"2.13.4",
20+
"2.13.5",
21+
"2.13.6"
22+
]
23+
}

.bloop/maven-scala-seed-test.json

Lines changed: 2314 additions & 0 deletions
Large diffs are not rendered by default.

.bloop/maven-scala-seed.json

Lines changed: 2273 additions & 0 deletions
Large diffs are not rendered by default.
2.38 KB
Binary file not shown.

.metals/metals.lock.db

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#FileLock
2+
#Tue May 16 22:21:51 EDT 2023
3+
hostName=localhost
4+
id=1882783893db710acbecb275e85bcd0d604faa25014
5+
method=file
6+
server=localhost\:57111

.metals/metals.log

Lines changed: 38694 additions & 0 deletions
Large diffs are not rendered by default.

.metals/metals.mv.db

432 KB
Binary file not shown.

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"files.watcherExclude": {
3+
"**/target": true
4+
},
5+
"java.configuration.updateBuildConfiguration": "interactive"
6+
}

application.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
server:
2+
port: ${PORT:8761}
3+
4+
eureka:
5+
client:
6+
registerWithEureka: false
7+
fetchRegistry: false
8+
server:
9+
waitTimeInMsWhenSyncEmpty: 0

pom.xml

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
<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/maven-v4_0_0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>com.example</groupId>
4+
<artifactId>maven-scala-seed</artifactId>
5+
<version>1.0-SNAPSHOT</version>
6+
<name>maven-scala-seed</name>
7+
<description>A minimal Scala project using the Maven build tool.</description>
8+
<licenses>
9+
<license>
10+
<name>My License</name>
11+
<url>http://....</url>
12+
<distribution>repo</distribution>
13+
</license>
14+
</licenses>
15+
<parent>
16+
<groupId>org.springframework.boot</groupId>
17+
<artifactId>spring-boot-starter-parent</artifactId>
18+
<version>2.6.3</version>
19+
<relativePath/> <!-- lookup parent from repository -->
20+
</parent>
21+
22+
<properties>
23+
<maven.compiler.source>17</maven.compiler.source>
24+
<maven.compiler.target>17</maven.compiler.target>
25+
<encoding>UTF-8</encoding>
26+
<scala.version>2.13.10</scala.version>
27+
<java.version>17</java.version>
28+
<spring-cloud.version>2021.0.3</spring-cloud.version>
29+
</properties>
30+
31+
32+
33+
<dependencies>
34+
<dependency>
35+
<groupId>org.codehaus.jettison</groupId>
36+
<artifactId>jettison</artifactId>
37+
<version>1.2</version>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.scala-lang</groupId>
41+
<artifactId>scala-library</artifactId>
42+
<version>2.13.10</version>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.springframework.cloud</groupId>
46+
<artifactId>spring-cloud-starter</artifactId>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.springframework.cloud</groupId>
50+
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
51+
</dependency>
52+
53+
<dependency>
54+
<groupId>org.springframework.boot</groupId>
55+
<artifactId>spring-boot-starter-test</artifactId>
56+
<scope>test</scope>
57+
</dependency>
58+
59+
<!-- Test -->
60+
<dependency>
61+
<groupId>org.scalameta</groupId>
62+
<artifactId>munit_2.13</artifactId>
63+
<version>0.7.29</version>
64+
<scope>test</scope>
65+
</dependency>
66+
</dependencies>
67+
<dependencyManagement>
68+
<dependencies>
69+
<dependency>
70+
<groupId>org.springframework.cloud</groupId>
71+
<artifactId>spring-cloud-dependencies</artifactId>
72+
<version>${spring-cloud.version}</version>
73+
<type>pom</type>
74+
<scope>import</scope>
75+
</dependency>
76+
</dependencies>
77+
</dependencyManagement>
78+
79+
<build>
80+
<sourceDirectory>src/main/scala</sourceDirectory>
81+
<testSourceDirectory>src/test/scala</testSourceDirectory>
82+
<plugins>
83+
<plugin>
84+
<groupId>org.springframework.boot</groupId>
85+
<artifactId>spring-boot-maven-plugin</artifactId>
86+
</plugin>
87+
<plugin>
88+
<!-- see http://davidb.github.com/scala-maven-plugin -->
89+
<groupId>net.alchim31.maven</groupId>
90+
<artifactId>scala-maven-plugin</artifactId>
91+
<version>3.3.2</version>
92+
<configuration></configuration>
93+
<executions>
94+
<execution>
95+
<goals>
96+
<goal>compile</goal>
97+
<goal>testCompile</goal>
98+
</goals>
99+
<configuration>
100+
<args></args>
101+
</configuration>
102+
</execution>
103+
</executions>
104+
</plugin>
105+
106+
</plugins>
107+
</build>
108+
<repositories>
109+
<repository>
110+
<id>netflix-candidates</id>
111+
<name>Netflix Candidates</name>
112+
<url>https://artifactory-oss.prod.netflix.net/artifactory/maven-oss-candidates</url>
113+
<snapshots>
114+
<enabled>false</enabled>
115+
</snapshots>
116+
</repository>
117+
</repositories>
118+
</project>

0 commit comments

Comments
 (0)