https://github.com/e-contract/sts
https://github.com/e-contract/sts
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/e-contract/sts
- Owner: e-Contract
- License: other
- Created: 2015-05-23T13:08:33.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2022-12-15T23:50:02.000Z (over 3 years ago)
- Last Synced: 2025-02-04T16:51:18.886Z (over 1 year ago)
- Language: Java
- Size: 412 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# eID STS Project
## Introduction
This project contains the source code tree of eID STS.
The source code is hosted at: https://github.com/e-Contract/sts
The Maven project site is hosted at e-contract.be: https://www.e-contract.be/sites/sts/
Issues can be reported via github: https://github.com/e-Contract/sts/issues
Also check out the eID Applet mailing list for announcements: https://groups.google.com/forum/#!forum/eid-applet
## Getting Started
A good entry point for using the eID STS project is the Maven project site.
https://www.e-contract.be/sites/sts/
## Requirements
The following is required for compiling the eID STS software:
* Oracle Java 1.7.0_80 or 1.8.0_45
* Apache Maven 3.3.3
Commons eID runs on Java 7+.
## Build
The project can be build via:
```shell
mvn clean install
```
## License
The source code of the eID STS Project is licensed under GNU LGPL v3.0.
All source code files remain under control of the GNU LGPL v3.0 license
unless otherwise decided in the future by _ALL_ eID STS Project
copyright holders.
The license conditions can be found in the file: LICENSE.txt
## Style Guide
Summary: "Eclipse Default Java Formatting"
Rationale:
Different code formatting wreaks havoc on diffs after commit:
Everything looks changed all the time.
I've added the java-formatter plugin to the main pom for this reason.
http://maven-java-formatter-plugin.googlecode.com/svn/site/0.4/plugin-info.html
Usage:
```shell
mvn -e com.googlecode.maven-java-formatter-plugin:maven-java-formatter-plugin:format
```
Using this leaves everyone free to have their own favorite formatting
in e.g. IDE's while still having a common formatting in the repository.