Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
License module for Java
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
PDSL
License module for Java
Commits
0dd0a436
Commit
0dd0a436
authored
Jan 16, 2019
by
Patrik Dufresne
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop/patrik/fix-cicd' into 'master'
Fix gitlab github push See merge request
!4
parents
b32a26ac
89ec5e34
Pipeline
#424
passed with stages
in 2 minutes and 12 seconds
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
27 deletions
+18
-27
.gitlab-ci.yml
.gitlab-ci.yml
+0
-12
README
README
+18
-15
No files found.
.gitlab-ci.yml
View file @
0dd0a436
...
...
@@ -35,15 +35,3 @@ nexus_deploy:
stage
:
publish
script
:
-
mvn -B -s ./settings.xml -Drevision=${REVISION} clean install deploy
github_push
:
stage
:
publish
script
:
-
git push --force https://${GITHUB_USR}:${GITHUB_PWD}@github.com/ikus060/${CI_PROJECT_NAME}.git refs/remotes/origin/${CI_COMMIT_REF_NAME}:refs/heads/${CI_COMMIT_REF_NAME}
-
git push https://${GITHUB_USR}:${GITHUB_PWD}@github.com/ikus060/${CI_PROJECT_NAME}.git --tags
gitlab_push
:
stage
:
publish
script
:
-
git push --force https://${GITLAB_COM_USR}:${GITLAB_COM_PWD}@gitlab.com/pdsl/${CI_PROJECT_NAME}.git refs/remotes/origin/${CI_COMMIT_REF_NAME}:refs/heads/${CI_COMMIT_REF_NAME}
-
git push https://${GITLAB_COM_USR}:${GITLAB_COM_PWD}@gitlab.com/pdsl/${CI_PROJECT_NAME}.git --tags
README
View file @
0dd0a436
Copyright (c) 2013 David Stites, Patrik Dufresne and others.
# How it work ?
LICENSING
=========
# Usage
## Generate your public and private key
Create the private key (containing information to create the public key).
$ openssl genrsa -out privkey.pem 2048
$ openssl pkcs8 -topk8 -in privkey.pem -inform PEM -nocrypt -outform DER -out privkey.der
Extract the public key, for publishing.
$ openssl rsa -in privkey.pem -out pubkey.der -pubout -outform DER
# License
This program is free software; you can redistribute it and/or modify
it under the terms of Apache License 2.0
You should have received a copy of the Apache License 2.0
along with this program in the file named "LICENSE".
This package is based on the following article:
http://blog.afewguyscoding.com/2012/02/licensing-module-java/
Generate your keys
==================
Create the private key (containing informationto create the public key).
$ openssl genrsa -out privkey.pem 2048
$ openssl pkcs8 -topk8 -in privkey.pem -inform PEM -nocrypt -outform DER -out privkey.der
Extract the public key, fur publishing.
$ openssl rsa -in privkey.pem -out pubkey.der -pubout -outform DER
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment