-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Maven project junit:junit:jar #511
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
Merged
Merged
Changes from 2 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
32b5270
Maven project junit:junit artifact
6674534
completed deployment Sourcefore and Maven central: verified OK
a0f325e
type "make" helps you to build without studying a config of IDE for M…
4dc40a2
deleted **/junit/runner/LICENSE
36101e7
added documentation + improvements
ab70e74
signing all project artifacts before deployment
0d50826
fixed indentation in Version.java
7321e5a
changed password for deployment to ftp://upload.sourceforge.net/incoming
8bd5494
updated JUnit description
181369e
removed license in POM
c861b8a
Merge remote-tracking branch 'remotes/origin/master' into junit.maven…
8b0d35b
fix double dashes in a comment
15bef4e
Merge branch 'master' of git://github.com/Tibor17/junit into junit.ma…
8d8daa4
version 4.12-SNAPSHOT
9e09169
removed profile 'checkSnapshot', added profile 'sign'
b311f26
same as ANT => src/main/... not on sourceforge ftp
c409227
same as ANT => no 'Use' pages in javadoc
d24e5d8
same as ANT => excluded internal packages
a3838b9
removed unnecessary plugin
f95251a
Fix: renamed LICENSE->LICENSE.txt in jar/zip build files
8f7fa2a
Fix: check required maven version has unbounded max
4dc82ec
deleting the sh file
a1599c8
LICENSE->LICENSE.txt, removed truezip-maven-plugin
3c282dd
removed /stylesheet.css, and FTP deployment, updated downloadUrl
6f71f80
removed ZIP, refactoring, enabled snaphosts/releases Maven Central
535ad1c
Version.java update - same principle like in ANT
b7a55bf
fixed to 4 chars indentations from tabs
faf9726
Merge branch 'master' of git://github.com/KentBeck/junit into junit.m…
9eb408a
removed release-plugin
e7ad65f
Jenkins is using custom `localRepository`
1a637a4
removed odd spaces before period
a7092c4
assignation + settings reference
561fb84
removed spaces before period in comment
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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,123 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> | ||
<id>assembly</id> | ||
<formats> | ||
<format>zip</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<dependencySets> | ||
<dependencySet> | ||
<useStrictFiltering>true</useStrictFiltering> | ||
<outputDirectory>${artifactId}-${version}</outputDirectory> | ||
<directoryMode>755</directoryMode> | ||
<useProjectAttachments>true</useProjectAttachments> | ||
<useTransitiveDependencies>false</useTransitiveDependencies> | ||
<unpack>true</unpack> | ||
<includes> | ||
<include>${groupId}:${artifactId}:${packaging}</include> | ||
</includes> | ||
<unpackOptions> | ||
<includes> | ||
<include>META-INF/**/pom.properties</include> | ||
<include>META-INF/MANIFEST.MF</include> | ||
</includes> | ||
</unpackOptions> | ||
</dependencySet> | ||
<dependencySet> | ||
<useProjectArtifact>true</useProjectArtifact> | ||
<useStrictFiltering>true</useStrictFiltering> | ||
<outputDirectory>${artifactId}-${version}</outputDirectory> | ||
<fileMode>0755</fileMode> | ||
<directoryMode>0755</directoryMode> | ||
<includes> | ||
<include>${groupId}:${artifactId}:${packaging}</include> | ||
<include>org.hamcrest:hamcrest-core</include> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Indentation oddity? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i will fix it |
||
</includes> | ||
</dependencySet> | ||
</dependencySets> | ||
<fileSets> | ||
<fileSet> | ||
<outputDirectory>${artifactId}-${version}</outputDirectory> | ||
<lineEnding>unix</lineEnding> | ||
<fileMode>0644</fileMode> | ||
<includes> | ||
<include>LICENSE</include> | ||
<include>cpl-v10.html</include> | ||
<include>README.html</include> | ||
<include>BUILDING</include> | ||
<include>pom.xml</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet> | ||
<directory>${project.build.sourceDirectory}</directory> | ||
<outputDirectory>${artifactId}-${version}</outputDirectory> | ||
<lineEnding>unix</lineEnding> | ||
<fileMode>0644</fileMode> | ||
<directoryMode>0644</directoryMode> | ||
<includes> | ||
<include>**/*.java</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet> | ||
<directory>${project.basedir}/src/main/resources</directory> | ||
<outputDirectory>${artifactId}-${version}</outputDirectory> | ||
<lineEnding>crlf</lineEnding> | ||
<fileMode>0644</fileMode> | ||
<directoryMode>0644</directoryMode> | ||
<filtered>true</filtered> | ||
<includes> | ||
<include>**/*</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet> | ||
<directory>${project.build.testSourceDirectory}</directory> | ||
<outputDirectory>${artifactId}-${version}</outputDirectory> | ||
<lineEnding>unix</lineEnding> | ||
<fileMode>0644</fileMode> | ||
<directoryMode>0644</directoryMode> | ||
<includes> | ||
<include>**/*.java</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet> | ||
<directory>${project.basedir}/src/test/resources</directory> | ||
<outputDirectory>${artifactId}-${version}</outputDirectory> | ||
<lineEnding>crlf</lineEnding> | ||
<fileMode>0644</fileMode> | ||
<directoryMode>0644</directoryMode> | ||
<filtered>true</filtered> | ||
<includes> | ||
<include>**/*</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet> | ||
<directory>${project.build.directory}/apidocs</directory> | ||
<outputDirectory>${artifactId}-${version}/javadoc</outputDirectory> | ||
<fileMode>0755</fileMode> | ||
<directoryMode>0755</directoryMode> | ||
<includes> | ||
<include>**/*</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet> | ||
<directory>${project.basedir}/doc</directory> | ||
<outputDirectory>${artifactId}-${version}/doc</outputDirectory> | ||
<fileMode>0755</fileMode> | ||
<directoryMode>0755</directoryMode> | ||
<includes> | ||
<include>**/*</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet> | ||
<directory>${project.build.directory}</directory> | ||
<outputDirectory>${artifactId}-${version}</outputDirectory> | ||
<fileMode>0755</fileMode> | ||
<directoryMode>0755</directoryMode> | ||
<includes> | ||
<include>${artifactId}-${version}-sources.jar</include> | ||
</includes> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
@Tibor17 Should this be 0755 here as well?
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.
@marcphilipp
It was intended for sourceforge. For individual use we will use 777.
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.
I was referring to the
0
prefix that is used in the other mode elements below. Will0755
work like755
or is one of the notations wrong?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.
Sure i mean 0777.
I am working on the assembly right now.