Skip to content

Commit

Permalink
Combined search-wrapper, search-wrapper-os and search-wrapper-os-rest
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianGreve-GreenDelta committed Sep 23, 2024
1 parent effdf96 commit 71e46e6
Show file tree
Hide file tree
Showing 43 changed files with 2,287 additions and 37 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
/target/
/.settings/
/.classpath
/.project
/.settings
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This project provides an abstraction layer for search engine implementation.

#### Get the source code of the application
We recommend that to use Git to manage the source code but you can also download
the source code as a [zip file](https://github.com/GreenDelta/search-wrapper/archive/master.zip).
the source code as a [zip file](https://github.com/GreenDelta/search-wrapper/archive/main.zip).
Create a development directory (the path should not contain whitespaces):

```bash
Expand All @@ -20,4 +20,4 @@ git clone https://github.com/GreenDelta/search-wrapper.git
```

#### Build
Now you can build the module with `mvn install`, which will install the module in your local maven repository.
Now you can build the module with `mvn install`, which will install the modules search-wrapper-api and search-wrapper-os in your local maven repository.
32 changes: 15 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@
<groupId>com.greendelta.search</groupId>
<artifactId>search-wrapper</artifactId>
<version>1.1.6</version>
<packaging>pom</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>

<modules>
<module>search-wrapper-api</module>
<module>search-wrapper-os</module>
</modules>

<licenses>
<license>
<name>Mozilla Public License, Version 2.0</name>
Expand All @@ -19,22 +25,14 @@
</license>
</licenses>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.4.0</version>
<executions>
<execution>
<id>download-licenses</id>
<goals>
<goal>download-licenses</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.greendelta.search</groupId>
<artifactId>search-wrapper-api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

</project>
4 changes: 4 additions & 0 deletions search-wrapper-api/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/target/
/.settings/
/.classpath
/.project
Loading

0 comments on commit 71e46e6

Please sign in to comment.