Skip to content

Commit a171fba

Browse files
committed
First commit.
0 parents  commit a171fba

21 files changed

+1006
-0
lines changed

.gitignore

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
##############################
2+
## Java
3+
##############################
4+
.mtj.tmp/
5+
*.class
6+
*.jar
7+
*.war
8+
*.ear
9+
*.nar
10+
hs_err_pid*
11+
replay_pid*
12+
13+
##############################
14+
## Maven
15+
##############################
16+
target/
17+
pom.xml.tag
18+
pom.xml.releaseBackup
19+
pom.xml.versionsBackup
20+
pom.xml.next
21+
pom.xml.bak
22+
release.properties
23+
dependency-reduced-pom.xml
24+
buildNumber.properties
25+
.mvn/timing.properties
26+
.mvn/wrapper/maven-wrapper.jar
27+
28+
##############################
29+
## Gradle
30+
##############################
31+
bin/
32+
build/
33+
.gradle
34+
.gradletasknamecache
35+
gradle-app.setting
36+
!gradle-wrapper.jar
37+
38+
##############################
39+
## IntelliJ
40+
##############################
41+
out/
42+
.idea/
43+
.idea_modules/
44+
*.iml
45+
*.ipr
46+
*.iws
47+
48+
##############################
49+
## Eclipse
50+
##############################
51+
.settings/
52+
#bin/
53+
tmp/
54+
.metadata
55+
.classpath
56+
.project
57+
*.tmp
58+
*.bak
59+
*.swp
60+
*~.nib
61+
local.properties
62+
.loadpath
63+
.factorypath
64+
65+
##############################
66+
## NetBeans
67+
##############################
68+
nbproject/private/
69+
#build/
70+
nbbuild/
71+
dist/
72+
nbdist/
73+
nbactions.xml
74+
nb-configuration.xml
75+
76+
##############################
77+
## Visual Studio Code
78+
##############################
79+
.vscode/
80+
.code-workspace
81+
82+
##############################
83+
## OS X
84+
##############################
85+
.DS_Store
86+
87+
##############################
88+
## Credit
89+
##############################
90+
# File sourced from https://gist.github.com/dedunumax/54e82214715e35439227

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Quinn Andrews
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Spring Local Elasticsearch

pom.xml

Lines changed: 149 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
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.quinnandrews</groupId>
8+
<artifactId>spring-local-elasticsearch</artifactId>
9+
<version>1.0.0-SNAPSHOT</version>
10+
11+
<name>Spring Local – Elasticsearch</name>
12+
<description>
13+
Provides configuration of an embedded Elasticsearch server (via Testcontainers)
14+
within Spring Boot Applications for local development and testing.
15+
</description>
16+
<url>https://github.com/quinnandrews/spring-local-elasticsearch</url>
17+
<inceptionYear>2024</inceptionYear>
18+
19+
<licenses>
20+
<license>
21+
<name>MIT License</name>
22+
<url>http://www.opensource.org/licenses/mit-license.php</url>
23+
</license>
24+
</licenses>
25+
26+
<developers>
27+
<developer>
28+
<id>quinnandrews</id>
29+
<name>Quinn Andrews</name>
30+
<url>https://github.com/quinnandrews</url>
31+
</developer>
32+
</developers>
33+
34+
<scm>
35+
<connection>scm:git:git://github.com/quinnandrews/spring-local-elasticsearch.git</connection>
36+
<developerConnection>scm:git:ssh://github.com:quinnandrews/spring-local-elasticsearch.git</developerConnection>
37+
<url>http://github.com/quinnandrews/spring-local-elasticsearch/tree/main</url>
38+
</scm>
39+
40+
<properties>
41+
<maven.compiler.source>17</maven.compiler.source>
42+
<maven.compiler.target>17</maven.compiler.target>
43+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44+
</properties>
45+
46+
<distributionManagement>
47+
<repository>
48+
<id>github</id>
49+
<name>GitHub Apache Maven Packages</name>
50+
<url>https://maven.pkg.github.com/quinnandrews/spring-local-elasticsearch</url>
51+
</repository>
52+
</distributionManagement>
53+
54+
<dependencyManagement>
55+
<dependencies>
56+
<dependency>
57+
<groupId>org.springframework.boot</groupId>
58+
<artifactId>spring-boot-dependencies</artifactId>
59+
<version>3.2.0</version>
60+
<type>pom</type>
61+
<scope>import</scope>
62+
</dependency>
63+
</dependencies>
64+
</dependencyManagement>
65+
66+
<dependencies>
67+
<dependency>
68+
<groupId>org.springframework.boot</groupId>
69+
<artifactId>spring-boot-starter-web</artifactId>
70+
</dependency>
71+
<dependency>
72+
<groupId>org.springframework.boot</groupId>
73+
<artifactId>spring-boot-configuration-processor</artifactId>
74+
</dependency>
75+
<dependency>
76+
<groupId>org.springframework.boot</groupId>
77+
<artifactId>spring-boot-testcontainers</artifactId>
78+
</dependency>
79+
<dependency>
80+
<groupId>org.springframework.boot</groupId>
81+
<artifactId>spring-boot-starter-data-elasticsearch</artifactId>
82+
</dependency>
83+
<dependency>
84+
<groupId>org.testcontainers</groupId>
85+
<artifactId>elasticsearch</artifactId>
86+
</dependency>
87+
<dependency>
88+
<groupId>org.springframework.boot</groupId>
89+
<artifactId>spring-boot-starter-test</artifactId>
90+
<scope>test</scope>
91+
</dependency>
92+
<dependency>
93+
<groupId>org.springframework.boot</groupId>
94+
<artifactId>spring-boot-starter-data-jpa</artifactId>
95+
<scope>test</scope>
96+
</dependency>
97+
<dependency>
98+
<groupId>com.h2database</groupId>
99+
<artifactId>h2</artifactId>
100+
<scope>test</scope>
101+
</dependency>
102+
<dependency>
103+
<groupId>org.apache.commons</groupId>
104+
<artifactId>commons-lang3</artifactId>
105+
<scope>test</scope>
106+
</dependency>
107+
</dependencies>
108+
109+
<build>
110+
<plugins>
111+
<plugin>
112+
<groupId>org.apache.maven.plugins</groupId>
113+
<artifactId>maven-source-plugin</artifactId>
114+
<version>3.3.0</version>
115+
<executions>
116+
<execution>
117+
<id>attach-sources</id>
118+
<goals>
119+
<goal>jar</goal>
120+
</goals>
121+
</execution>
122+
</executions>
123+
</plugin>
124+
<plugin>
125+
<groupId>org.apache.maven.plugins</groupId>
126+
<artifactId>maven-javadoc-plugin</artifactId>
127+
<version>3.5.0</version>
128+
<executions>
129+
<execution>
130+
<id>attach-javadocs</id>
131+
<goals>
132+
<goal>jar</goal>
133+
</goals>
134+
</execution>
135+
</executions>
136+
</plugin>
137+
<plugin>
138+
<groupId>org.apache.maven.plugins</groupId>
139+
<artifactId>maven-surefire-plugin</artifactId>
140+
<version>3.1.2</version>
141+
<configuration>
142+
<includes>
143+
<include>**/*Test.*</include>
144+
</includes>
145+
</configuration>
146+
</plugin>
147+
</plugins>
148+
</build>
149+
</project>

0 commit comments

Comments
 (0)