This repository has been archived by the owner on May 12, 2018. It is now read-only.
forked from jhipster/jhipster-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
119 changed files
with
1,271 additions
and
43,501 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
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,62 +1,54 @@ | ||
{ | ||
"version": "0.0.0", | ||
"name": "sampleApplication", | ||
"appPath": "src/main/webapp/", | ||
"testPath": "src/test/javascript/spec", | ||
"dependencies": { | ||
"angular": "1.5.2", | ||
"angular-aria": "1.5.2", | ||
"angular-bootstrap": "1.2.5", | ||
"angular-cache-buster": "0.4.3", | ||
"angular-cookies": "1.5.2", | ||
"angular-dynamic-locale": "0.1.30", | ||
"angular-i18n": "1.5.2", | ||
"ngstorage": "0.3.10", | ||
"angular-loading-bar": "0.9.0", | ||
"angular-resource": "1.5.2", | ||
"angular-sanitize": "1.5.2", | ||
"angular-translate": "2.11.0", | ||
"angular-translate-interpolation-messageformat": "2.11.0", | ||
"angular-translate-loader-partial": "2.11.0", | ||
"angular-translate-storage-cookie": "2.11.0", | ||
"angular-ui-router": "0.2.18", | ||
"bootstrap": "3.3.6", | ||
"bootstrap-ui-datetime-picker": "2.2.3", | ||
"jquery": "2.2.2", | ||
"json3": "3.3.2", | ||
"modernizr": "3.3.1", | ||
"ng-file-upload": "12.0.4", | ||
"ngInfiniteScroll": "1.2.2", | ||
"swagger-ui": "2.1.4" | ||
}, | ||
"devDependencies": { | ||
"angular-mocks": "1.5.2", | ||
"angular-scenario": "1.5.2" | ||
}, | ||
"overrides": { | ||
"angular": { | ||
"dependencies": { | ||
"jquery": "2.2.2" | ||
} | ||
}, | ||
"bootstrap": { | ||
"main": [ | ||
"dist/js/bootstrap.js", | ||
"dist/css/bootstrap.css", | ||
"less/bootstrap.less" | ||
] | ||
}, | ||
"messageformat": { | ||
"main": [ | ||
"messageformat.js", | ||
"locale/en.js" | ||
] | ||
} | ||
}, | ||
"resolutions": { | ||
"angular": "1.5.2", | ||
"angular-cookies": "1.5.2", | ||
"angular-bootstrap": "1.2.5", | ||
"version": "0.0.0", | ||
"name": "sample-application", | ||
"appPath": "src/main/webapp/", | ||
"testPath": "src/test/javascript/spec", | ||
"dependencies": { | ||
"angular": "1.5.2", | ||
"angular-aria": "1.5.2", | ||
"angular-bootstrap": "1.2.5", | ||
"angular-cache-buster": "0.4.3", | ||
"angular-cookies": "1.5.2", | ||
"angular-dynamic-locale": "0.1.30", | ||
"angular-i18n": "1.5.2", | ||
"ngstorage": "0.3.10", | ||
"angular-loading-bar": "0.9.0", | ||
"angular-resource": "1.5.2", | ||
"angular-sanitize": "1.5.2", | ||
"angular-translate": "2.11.0", | ||
"angular-translate-interpolation-messageformat": "2.11.0", | ||
"angular-translate-loader-partial": "2.11.0", | ||
"angular-translate-storage-cookie": "2.11.0", | ||
"angular-ui-router": "0.2.18", | ||
"bootstrap": "3.3.6", | ||
"bootstrap-ui-datetime-picker": "2.3.1", | ||
"jquery": "2.2.2", | ||
"json3": "3.3.2", | ||
"messageformat": "0.3.1", | ||
"modernizr": "3.3.1", | ||
"ng-file-upload": "12.0.4", | ||
"ngInfiniteScroll": "1.2.2", | ||
"swagger-ui": "2.1.4" | ||
}, | ||
"devDependencies": { | ||
"angular-mocks": "1.5.2" | ||
}, | ||
"overrides": { | ||
"angular" : { | ||
"dependencies": { | ||
"jquery": "2.2.2" | ||
} | ||
}, | ||
"bootstrap": { | ||
"main": [ | ||
"dist/css/bootstrap.css" | ||
] | ||
} | ||
}, | ||
"resolutions": { | ||
"angular": "1.5.2", | ||
"angular-cookies": "1.5.2", | ||
"angular-bootstrap": "1.2.5", | ||
"jquery": "2.2.2" | ||
} | ||
} |
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
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
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
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,10 +1,13 @@ | ||
FROM java:openjdk-8-jdk-alpine | ||
FROM java:openjdk-8-jre-alpine | ||
|
||
ENV JHIPSTER_SLEEP 0 | ||
|
||
# add directly the war | ||
ADD *.war /app.war | ||
|
||
RUN sh -c 'touch /app.war' | ||
VOLUME /tmp | ||
CMD ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.war"] | ||
|
||
EXPOSE 8080 | ||
CMD echo "The application will start in ${JHIPSTER_SLEEP}s..." && \ | ||
sleep ${JHIPSTER_SLEEP} && \ | ||
java -Djava.security.egd=file:/dev/./urandom -jar /app.war |
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
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
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
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
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
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.