-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(java): maven-doxia-sitetools (#111)
* refactor(java): maven-doxia-sitetools * fix(java): metadata --------- Co-authored-by: junheeL <junhee_lee@korea.ac.kr>
1 parent
9adbf33
commit ff2b182
Showing
430 changed files
with
81,926 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
FROM ubuntu:22.04 | ||
|
||
RUN export DEBIAN_FRONTEND=noninteractive \ | ||
&& apt-get update \ | ||
&& apt-get install -y software-properties-common \ | ||
&& add-apt-repository ppa:deadsnakes/ppa \ | ||
&& apt-get update \ | ||
&& apt-get install -y \ | ||
build-essential \ | ||
git \ | ||
vim \ | ||
jq \ | ||
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/list/* | ||
|
||
RUN apt-get -y install sudo \ | ||
openjdk-8-jdk \ | ||
maven | ||
|
||
RUN bash -c "echo 2 | update-alternatives --config java" | ||
|
||
COPY src /workspace | ||
WORKDIR /workspace | ||
|
||
RUN mvn install -V -B -Denforcer.skip=true -Dcheckstyle.skip=true -Dcobertura.skip=true -Drat.skip=true -Dlicense.skip=true -Dfindbugs.skip=true -Dgpg.skip=true -Dskip.npm=true -Dskip.gulp=true -Dskip.bower=true -Drat.numUnapprovedLicenses=100 -DskipTests=true -DskipITs=true -Dtest=None -DfailIfNoTests=false | ||
|
||
RUN mvn test -V -B -Denforcer.skip=true -Dcheckstyle.skip=true -Dcobertura.skip=true -Drat.skip=true -Dlicense.skip=true -Dfindbugs.skip=true -Dgpg.skip=true -Dskip.npm=true -Dskip.gulp=true -Dskip.bower=true -Drat.numUnapprovedLicenses=100 | ||
|
||
ENV TZ=Asia/Seoul |
Oops, something went wrong.