mirror of https://github.com/apache/nifi.git
NIFI-6588 Updated assembly pom file to move all graph components into a profile to save space in the convenience binary.
This commit is contained in:
parent
4ae1fec78a
commit
2e554cbb67
|
@ -397,30 +397,6 @@ language governing permissions and limitations under the License. -->
|
|||
<version>1.10.0-SNAPSHOT</version>
|
||||
<type>nar</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-graph-client-service-api-nar</artifactId>
|
||||
<version>1.10.0-SNAPSHOT</version>
|
||||
<type>nar</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-neo4j-cypher-service-nar</artifactId>
|
||||
<version>1.10.0-SNAPSHOT</version>
|
||||
<type>nar</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-other-graph-services-nar</artifactId>
|
||||
<version>1.10.0-SNAPSHOT</version>
|
||||
<type>nar</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-graph-nar</artifactId>
|
||||
<version>1.10.0-SNAPSHOT</version>
|
||||
<type>nar</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-avro-nar</artifactId>
|
||||
|
@ -805,6 +781,38 @@ language governing permissions and limitations under the License. -->
|
|||
</dependency>
|
||||
</dependencies>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>include-graph</id>
|
||||
<activation>
|
||||
<activeByDefault>false</activeByDefault>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-graph-client-service-api-nar</artifactId>
|
||||
<version>1.10.0-SNAPSHOT</version>
|
||||
<type>nar</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-neo4j-cypher-service-nar</artifactId>
|
||||
<version>1.10.0-SNAPSHOT</version>
|
||||
<type>nar</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-other-graph-services-nar</artifactId>
|
||||
<version>1.10.0-SNAPSHOT</version>
|
||||
<type>nar</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-graph-nar</artifactId>
|
||||
<version>1.10.0-SNAPSHOT</version>
|
||||
<type>nar</type>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>include-grpc</id>
|
||||
<!-- This profile handles the inclusion of grpc artifacts. They are notoriously
|
||||
|
|
Loading…
Reference in New Issue