Project containing several commons libraries to be reused across the platform.
Java 11 is required for this library to be used
Add the following to your project's pom.xml
file:
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-coding-eval-platform-maven</id>
<name>bintray</name>
<url>https://dl.bintray.com/coding-eval-platform/maven</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>bintray-coding-eval-platform-maven</id>
<name>bintray-plugins</name>
<url>https://dl.bintray.com/coding-eval-platform/maven</url>
</pluginRepository>
</pluginRepositories>
Add the necessary dependency in your project's pom.xml
file. For example:
<dependencies>
<dependency>
<groupId>ar.edu.itba.cep</groupId>
<artifactId>commons-web-authentication</artifactId>
<version>${commons.version}</version>
</dependency>
</dependencies>
You can also build your own versions of the libraries. Maven is required for this.
$ git clone https://github.com/coding-eval-platform/commons.git
$ cd commons
$ mvn clean install -P local-deploy
-
Clone the repository or download source code:
$ git clone https://github.com/coding-eval-platform/users-service.git
or
$ wget https://github.com/coding-eval-platform/users-service/archive/master.zip
-
Install Maven
Note: Maven 3.5+ is required!
$ brew install maven
$ sudo apt-get install maven
Check this site.
-
Change working directory to project root
$ cd <project-root>
-
Build artifacts
$ mvn clean package
Copyright 2019 Bellini & Lobo
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.