This project provides Java resource bundles(i18n) that can be saved to your prefered database and load back. It is kept simple. There is also restful web services provided for providing resource bundles also for the web and can be used also with other languages than java.
The erd-diagramm for this database looks as follows:
This erd-diagramm was created with intellij
The source code comes under the liberal MIT License, making resource-bundles-data great for all types of I18N applications.
Maven dependency is now on sonatype. Check out sonatype repository for latest snapshots and releases.
Add the following maven dependencies to your project pom.xml
if you want to import the core functionality:
You can first define the version properties:
<properties>
...
<!-- resource-bundles-data version -->
<resource-bundles-data.version>5.4</resource-bundles-data.version>
<resource-bundles-business.version>${resource-bundles-data.version}</resource-bundles-business.version>
<resource-bundles-domain.version>${resource-bundles-data.version}</resource-bundles-domain.version>
<resource-bundles-entities.version>${resource-bundles-data.version}</resource-bundles-entities.version>
<resource-bundles-init.version>${resource-bundles-data.version}</resource-bundles-init.version>
<resource-bundles-rest-api.version>${resource-bundles-data.version}</resource-bundles-rest-api.version>
<resource-bundles-rest-client.version>${resource-bundles-data.version}</resource-bundles-rest-client.version>
<resource-bundles-rest-web.version>${resource-bundles-data.version}</resource-bundles-rest-web.version>
...
</properties>
Add the following maven dependency to your project pom.xml
if you want to import the functionality of resource-bundles-business:
<dependencies>
...
<dependency>
<groupId>de.alpharogroup</groupId>
<artifactId>resource-bundles-business</artifactId>
<version>${resource-bundles-business.version}</version>
</dependency>
...
</dependencies>
Add the following maven dependency to your project pom.xml
if you want to import the functionality of resource-bundles-domain:
<dependencies>
...
<dependency>
<groupId>de.alpharogroup</groupId>
<artifactId>resource-bundles-domain</artifactId>
<version>${resource-bundles-domain.version}</version>
</dependency>
...
</dependencies>
Add the following maven dependency to your project pom.xml
if you want to import the functionality of resource-bundles-entities:
<dependencies>
...
<dependency>
<groupId>de.alpharogroup</groupId>
<artifactId>resource-bundles-entities</artifactId>
<version>${resource-bundles-entities.version}</version>
</dependency>
...
</dependencies>
Add the following maven dependency to your project pom.xml
if you want to import the functionality of resource-bundles-init:
<dependencies>
...
<dependency>
<groupId>de.alpharogroup</groupId>
<artifactId>resource-bundles-init</artifactId>
<version>${resource-bundles-init.version}</version>
</dependency>
...
</dependencies>
Add the following maven dependency to your project pom.xml
if you want to import the functionality of resource-bundles-rest-api:
<dependencies>
...
<dependency>
<groupId>de.alpharogroup</groupId>
<artifactId>resource-bundles-rest-api</artifactId>
<version>${resource-bundles-rest-api.version}</version>
</dependency>
...
</dependencies>
Add the following maven dependency to your project pom.xml
if you want to import the functionality of resource-bundles-rest-client:
<dependencies>
...
<dependency>
<groupId>de.alpharogroup</groupId>
<artifactId>resource-bundles-rest-client</artifactId>
<version>${resource-bundles-rest-client.version}</version>
</dependency>
...
</dependencies>
Add the following maven dependency to your project pom.xml
if you want to import the functionality of resource-bundles-rest-web:
<dependencies>
...
<dependency>
<groupId>de.alpharogroup</groupId>
<artifactId>resource-bundles-rest-web</artifactId>
<version>${resource-bundles-rest-web.version}</version>
</dependency>
...
</dependencies>
The source code for resource-bundles-data are on GitHub. Please feel free to fork and send pull requests!
Create your own fork of lightblueseas/resource-bundles-data/fork
To share your changes, submit a pull request.
Don't forget to add new units tests on your changes.
Do not hesitate to contact the resource-bundles-data developers with your questions, concerns, comments, bug reports, or feature requests.
- Feature requests, questions and bug reports can be reported at the issues page.
No animals were harmed in the making of this library.
This project is kept as an open source product and relies on contributions to remain being developed. If you like this project, please consider a donation through paypal:
or over bitcoin or bitcoin-cash with:
1Jzso5h7U82QCNmgxxSCya1yUK7UVcSXsW
or over ether with:
0xaB6EaE10F352268B0CA672Dd6e999C86344D49D8
Travis CI |
---|
Many thanks to Travis CI for providing a free continuous integration service for open source projects. |