Skip to content

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 33 commits into from
Jan 9, 2013
Merged
Show file tree
Hide file tree
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
Sep 22, 2012
6674534
completed deployment Sourcefore and Maven central: verified OK
Sep 23, 2012
a0f325e
type "make" helps you to build without studying a config of IDE for M…
Sep 26, 2012
4dc40a2
deleted **/junit/runner/LICENSE
Sep 26, 2012
36101e7
added documentation + improvements
Sep 28, 2012
ab70e74
signing all project artifacts before deployment
Sep 28, 2012
0d50826
fixed indentation in Version.java
Oct 21, 2012
7321e5a
changed password for deployment to ftp://upload.sourceforge.net/incoming
Oct 21, 2012
8bd5494
updated JUnit description
Oct 21, 2012
181369e
removed license in POM
Oct 21, 2012
c861b8a
Merge remote-tracking branch 'remotes/origin/master' into junit.maven…
Nov 25, 2012
8b0d35b
fix double dashes in a comment
Dec 22, 2012
15bef4e
Merge branch 'master' of git://github.com/Tibor17/junit into junit.ma…
Dec 22, 2012
8d8daa4
version 4.12-SNAPSHOT
Dec 22, 2012
9e09169
removed profile 'checkSnapshot', added profile 'sign'
Dec 22, 2012
b311f26
same as ANT => src/main/... not on sourceforge ftp
Dec 23, 2012
c409227
same as ANT => no 'Use' pages in javadoc
Dec 23, 2012
d24e5d8
same as ANT => excluded internal packages
Dec 23, 2012
a3838b9
removed unnecessary plugin
Dec 23, 2012
f95251a
Fix: renamed LICENSE->LICENSE.txt in jar/zip build files
Dec 23, 2012
8f7fa2a
Fix: check required maven version has unbounded max
Dec 23, 2012
4dc82ec
deleting the sh file
Jan 7, 2013
a1599c8
LICENSE->LICENSE.txt, removed truezip-maven-plugin
Jan 7, 2013
3c282dd
removed /stylesheet.css, and FTP deployment, updated downloadUrl
Jan 7, 2013
6f71f80
removed ZIP, refactoring, enabled snaphosts/releases Maven Central
Jan 7, 2013
535ad1c
Version.java update - same principle like in ANT
Jan 7, 2013
b7a55bf
fixed to 4 chars indentations from tabs
Jan 7, 2013
faf9726
Merge branch 'master' of git://github.com/KentBeck/junit into junit.m…
Jan 7, 2013
9eb408a
removed release-plugin
Jan 7, 2013
e7ad65f
Jenkins is using custom `localRepository`
Jan 8, 2013
1a637a4
removed odd spaces before period
Jan 8, 2013
a7092c4
assignation + settings reference
Jan 8, 2013
561fb84
removed spaces before period in comment
Jan 8, 2013
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
523 changes: 523 additions & 0 deletions pom.xml

Large diffs are not rendered by default.

123 changes: 123 additions & 0 deletions src/main/assembly/src.xml
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>
Copy link
Member

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?

Copy link
Contributor Author

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.

Copy link
Member

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. Will 0755 work like 755 or is one of the notations wrong?

Copy link
Contributor Author

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.

<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>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indentation oddity?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i will fix it
Thanks for reminding me

</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>
Loading