-
-
Notifications
You must be signed in to change notification settings - Fork 128
Add documentation about how to run from source #308
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Daniel Schaefer <[email protected]>
<pre> | ||
mvn -B clean compile | ||
mvn -B package -DskipTests | ||
java -jar jsign/target/jsign-7.2-SNAPSHOT.jar --help |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a mvn command to build/run jsign from source?
Then I could avoid the package step and it would be even faster.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no command to run Jsign from Maven. That may be possible with the exec-maven-plugin but the syntax would be cumbersome, the package+run approach is easier I think.
--in application.apk | ||
</pre> | ||
|
||
<h3 id="credits">Development</h3> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The id attribute has to be changed
If you'd like to build and run jsign from source, please follow the below instructions: | ||
|
||
<pre> | ||
mvn -B clean compile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to use -B
, the batch mode is rather for the CI builds. Also a single invocation is faster:
mvn clean package -DskipTests
No description provided.