-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* partial fix * Set<> changed to List<> * improvements and guid type changed to Integer * Changed GUID type * #2 groupdId packange naming changed. version upgraded * improvements * fixed cli * pipeline updated * Closes #3 * improvements * partial fix * fixed duplicated left joins * refactored * bug fixed * updated * Closes #1 * updated README * Release/2.0.0 (#16) * Enhance finder #7 (#14) * release version * Hotfix/deployment (#17) * Feature/improvements (#19) * #18 renamed classes * #18 moved to another package * processor implemented * major cleanup and javadoc * README updated * #18 READEME updated and minor fixes * #18 replaced Sets from Google to own impl and defined mappers * #18 improving verbose messaging * improvements * introduces sql helper * removed impl related to Finder's feature * additional method * mappers changed * Updated Readme * Update README.md * Updated README * Feature/improvements (#20) * #18 renamed classes * #18 moved to another package * processor implemented * major cleanup and javadoc * README updated * #18 READEME updated and minor fixes * #18 replaced Sets from Google to own impl and defined mappers * #18 improving verbose messaging * improvements * introduces sql helper * removed impl related to Finder's feature * additional method * mappers changed * Updated README
- Loading branch information
Showing
96 changed files
with
13,588 additions
and
11,611 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,59 @@ | ||
<settings> | ||
<mirrors> | ||
<mirror> | ||
<!--This sends everything else to /public --> | ||
<id>nexus</id> | ||
<mirrorOf>*</mirrorOf> | ||
<url>http://eorghe.com:8081/repository/maven-public/</url> | ||
</mirror> | ||
</mirrors> | ||
<mirrors> | ||
<mirror> | ||
<!--This sends everything else to /public --> | ||
<id>nexus</id> | ||
<mirrorOf>*</mirrorOf> | ||
<url>http://eorghe.com:8081/repository/maven-public/</url> | ||
</mirror> | ||
</mirrors> | ||
<profiles> | ||
<profile> | ||
<id>nexus</id> | ||
<!--Enable snapshots for the built in central repo to direct --> | ||
<!--all requests to nexus via the mirror --> | ||
<repositories> | ||
<repository> | ||
<id>central</id> | ||
<url>http://eorghe.com:8081/repository/maven-central/</url> | ||
<releases><enabled>true</enabled></releases> | ||
<snapshots><enabled>true</enabled></snapshots> | ||
</repository> | ||
</repositories> | ||
<profile> | ||
<id>nexus</id> | ||
<!--Enable snapshots for the built in central repo to direct --> | ||
<!--all requests to nexus via the mirror --> | ||
<properties> | ||
<url>http://eorghe.com:8081/repository/maven-releases/</url> | ||
<url-snapshopt>http://eorghe.com:8081/repository/maven-snapshots/</url-snapshopt> | ||
</properties> | ||
<repositories> | ||
<repository> | ||
<id>central</id> | ||
<url>http://eorghe.com:8081/repository/maven-central/</url> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
<pluginRepositories> | ||
<pluginRepository> | ||
<id>central</id> | ||
<url>http://eorghe.com:8081/repository/maven-central/</url> | ||
<releases><enabled>true</enabled></releases> | ||
<snapshots><enabled>true</enabled></snapshots> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
</profile> | ||
</profiles> | ||
|
||
<servers> | ||
<pluginRepository> | ||
<id>central</id> | ||
<url>http://eorghe.com:8081/repository/maven-central/</url> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</pluginRepository> | ||
</pluginRepositories> | ||
</profile> | ||
</profiles> | ||
|
||
<servers> | ||
<server> | ||
<id>nexus</id> | ||
<username>${env.MAVEN_REPO_USER}</username> | ||
<password>${env.MAVEN_REPO_PASS}</password> | ||
<id>nexus</id> | ||
<username>${env.MAVEN_REPO_USER}</username> | ||
<password>${env.MAVEN_REPO_PASS}</password> | ||
</server> | ||
</servers> | ||
|
||
<activeProfiles> | ||
<!--make the profile active all the time --> | ||
<activeProfile>nexus</activeProfile> | ||
</activeProfiles> | ||
<activeProfiles> | ||
<!--make the profile active all the time --> | ||
<activeProfile>nexus</activeProfile> | ||
</activeProfiles> | ||
|
||
</settings> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.