Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
6d8795a
Change dependency version properties to match 6.3.0 EMR stack, add Je…
ravisanwal Aug 19, 2021
2182827
Really add Jenkinsfile
ravisanwal Aug 19, 2021
e01667a
Merge pull request #1 from sproutsocial/emr
danrjohnson Aug 19, 2021
124ce44
ECR login??
ravisanwal Aug 19, 2021
be784a9
Override distribution management
ravisanwal Aug 19, 2021
70421f3
Merge pull request #2 from sproutsocial/emr
ravisanwal Aug 19, 2021
1132786
enable deploying sources
ravisanwal Aug 19, 2021
45c5417
Merge pull request #3 from sproutsocial/emr
ravisanwal Aug 19, 2021
f041ee6
version bump
ravisanwal Aug 19, 2021
3daaeaf
Merge pull request #4 from sproutsocial/emr
ravisanwal Aug 19, 2021
a068bd4
[LIS-3707] remove variable for version, sprout jenkins module doesn't…
ravisanwal Aug 19, 2021
41cce9a
Merge pull request #5 from sproutsocial/emr
ravisanwal Aug 19, 2021
ed0a604
[LIS-3707] try to fix source plugin order
ravisanwal Aug 19, 2021
4b714dd
Merge pull request #6 from sproutsocial/emr
ravisanwal Aug 19, 2021
0f9ea5f
[LIS-3707] bump version again
ravisanwal Aug 19, 2021
a4034f2
Merge pull request #7 from sproutsocial/emr
ravisanwal Aug 19, 2021
96700d1
[LIS-3707] bump version again
ravisanwal Aug 19, 2021
5e328da
Merge pull request #8 from sproutsocial/emr
ravisanwal Aug 19, 2021
8712a76
[LIS-3707] bump version again with source plugin fix
ravisanwal Aug 20, 2021
e0074c8
Merge pull request #9 from sproutsocial/emr
ravisanwal Aug 21, 2021
de0c499
[LIS-3707] Manually syncing upstream
ravisanwal Jan 13, 2022
a3ebff8
undo version change and move to using ${revision}
ravisanwal Jan 13, 2022
4c02764
revision default value
ravisanwal Jan 13, 2022
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
8 changes: 8 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
sproutMultiModuleBuild {
moduleToBuild = 'hbase-connectors'
tribes = ['analytics']
squads = ['listening']
slackChannel = '#eng-listening-platform'
runECRLogin = 'true'
mavenProperties = '-Dspark.version=3.1.1 -Dscala.version=2.12.10 -Dscala.binary.version=2.12 -Dhbase.version=2.2.6 -Dhadoop.profile=3.0 -Dhadoop-three.version=3.2.1 -DskipTests'
}
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,20 @@
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/hbase-connectors.git</developerConnection>
<url>https://gitbox.apache.org/repos/asf?p=hbase-connectors.git;a=summary</url>
</scm>

<distributionManagement>
<repository>
<id>releases</id>
<name>Internal releases</name>
<url>https://nexus.int.sproutsocial.com/nexus/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Internal snapshots</name>
<url>https://nexus.int.sproutsocial.com/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>

<issueManagement>
<!--File issues for this project against Apache HBase JIRA-->
<system>JIRA</system>
Expand Down
12 changes: 12 additions & 0 deletions spark/hbase-spark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,18 @@
</rules>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down