Skip to content

Commit

Permalink
[FLINK-9886] [sql-client] Build SQL jars with every build
Browse files Browse the repository at this point in the history
This closes apache#6366.
  • Loading branch information
twalthr committed Jul 20, 2018
1 parent 6fcc1e9 commit 46334e2
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 14 deletions.
6 changes: 3 additions & 3 deletions flink-connectors/flink-connector-kafka-0.10/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,12 @@ under the License.
</dependencies>

<profiles>
<!-- Create SQL Client uber jars by default -->
<profile>
<!-- Create SQL Client uber jars for releases -->
<id>release</id>
<id>sql-jars</id>
<activation>
<property>
<name>release</name>
<name>!skipSqlJars</name>
</property>
</activation>
<build>
Expand Down
6 changes: 3 additions & 3 deletions flink-connectors/flink-connector-kafka-0.11/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -212,12 +212,12 @@ under the License.
</dependencies>

<profiles>
<!-- Create SQL Client uber jars by default -->
<profile>
<!-- Create SQL Client uber jars for releases -->
<id>release</id>
<id>sql-jars</id>
<activation>
<property>
<name>release</name>
<name>!skipSqlJars</name>
</property>
</activation>
<build>
Expand Down
6 changes: 3 additions & 3 deletions flink-connectors/flink-connector-kafka-0.9/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -191,12 +191,12 @@ under the License.
</dependencies>

<profiles>
<!-- Create SQL Client uber jars by default -->
<profile>
<!-- Create SQL Client uber jars for releases -->
<id>release</id>
<id>sql-jars</id>
<activation>
<property>
<name>release</name>
<name>!skipSqlJars</name>
</property>
</activation>
<build>
Expand Down
9 changes: 7 additions & 2 deletions flink-formats/flink-avro/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,14 @@ under the License.
</dependencies>

<profiles>
<!-- Create SQL Client uber jars by default -->
<profile>
<!-- Create SQL Client uber jars for releases -->
<id>release</id>
<id>sql-jars</id>
<activation>
<property>
<name>!skipSqlJars</name>
</property>
</activation>
<build>
<plugins>
<plugin>
Expand Down
6 changes: 3 additions & 3 deletions flink-formats/flink-json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ under the License.
</dependencies>

<profiles>
<!-- Create SQL Client uber jars by default -->
<profile>
<!-- Create SQL Client uber jars for releases -->
<id>release</id>
<id>sql-jars</id>
<activation>
<property>
<name>release</name>
<name>!skipSqlJars</name>
</property>
</activation>
<build>
Expand Down

0 comments on commit 46334e2

Please sign in to comment.