Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9cf442d
Adding build test module
pwendell Aug 28, 2015
20ae791
Adding new deps file without spark
pwendell Aug 31, 2015
5670b6a
Moving build tests earlier
pwendell Aug 31, 2015
5b2910b
Adding license header
pwendell Aug 31, 2015
0c8153d
Adding RAT exclude
pwendell Aug 31, 2015
f4243b9
Merge remote-tracking branch 'apache/master' into dependency-audits
pwendell Nov 3, 2015
17970f7
Ignore spark itself in deps file
pwendell Nov 3, 2015
16adab6
Style fix
pwendell Nov 3, 2015
8b973bf
Adding test block
pwendell Nov 3, 2015
d181e3d
Only include compile dependencies when generating list
pwendell Nov 3, 2015
84cab2c
Adding Hadoop 1 profile
pwendell Nov 3, 2015
5c8ccf6
Adding new hadoop versions
pwendell Nov 3, 2015
fcea19f
Bug fix
pwendell Nov 3, 2015
2f4d3e5
Adding new hadoop deps
pwendell Nov 3, 2015
37230f0
More RAT excludes
pwendell Nov 3, 2015
1d91634
Testing new dependencies
pwendell Nov 3, 2015
1e3ff47
Merge remote-tracking branch 'origin/master' into SPARK-10359
JoshRosen Dec 23, 2015
b013514
Refactor to avoid compile in install.
JoshRosen Dec 23, 2015
8f7007e
Don't generate version backup POMs.
JoshRosen Dec 23, 2015
258e4f7
Use bash exit traps to ensure proper cleanup
JoshRosen Dec 23, 2015
e8af274
Whoops, missed another -DgenerateBackupPoms=false
JoshRosen Dec 23, 2015
8507ffd
Support multiple Hadoop profiles.
JoshRosen Dec 23, 2015
2711252
Roll back test dependency change.
JoshRosen Dec 23, 2015
4ad3ae4
Fix RAT excludes (CLI RAT doesn't seem to support full path pattern m…
JoshRosen Dec 23, 2015
7c86eb7
dev/test-dependencies.sh is part of the build module.
JoshRosen Dec 23, 2015
87918d8
Use runtime scope (per Sean's comments)
JoshRosen Dec 23, 2015
15a0e68
Remove old dependency diffing code.
JoshRosen Dec 23, 2015
5acdd9a
Remove accidentally-added files
JoshRosen Dec 23, 2015
63e4109
Update pom.xml
JoshRosen Dec 30, 2015
8a9e4a7
Update pom.xml
JoshRosen Dec 30, 2015
2e78d57
Move build tests earlier in script
JoshRosen Dec 30, 2015
51f9752
whitespace
JoshRosen Dec 30, 2015
9932c80
Dummy build change.
JoshRosen Dec 30, 2015
1454f5f
Changes to test module system
JoshRosen Dec 30, 2015
329bdf2
Use `git diff` for nicer diff formatting.
JoshRosen Dec 30, 2015
367c8ed
Minor change in exit trap
JoshRosen Dec 30, 2015
cc99de6
Roll back test dependency change.
JoshRosen Dec 30, 2015
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
Prev Previous commit
Next Next commit
Only include compile dependencies when generating list
  • Loading branch information
pwendell committed Nov 3, 2015
commit d181e3d15c1ca436084a05f76eb18cde4ac1a209
2 changes: 1 addition & 1 deletion dev/test-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ $MVN install -q \
-DskipTests

echo "Generating dependency manifest"
$MVN dependency:build-classpath \
$MVN dependency:build-classpath -pl assembly \
| grep "Building Spark Project Assembly" -A 5 \
| tail -n 1 | tr ":" "\n" | rev | cut -d "/" -f 1 | rev | sort \
| grep -v spark > dev/pr-deps
Expand Down
16 changes: 16 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2052,6 +2052,22 @@
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>default-cli</id>
<goals>
<goal>build-classpath</goal>
</goals>
<configuration>
<!-- Only count compile-scoped dependencies when generating classpath -->
<includeScope>compile</includeScope>
</configuration>
</execution>
</executions>
</plugin>
<!-- This plugin's configuration is used to store Eclipse m2e settings only. -->
<!-- It has no influence on the Maven build itself. -->
<plugin>
Expand Down