Download eagle-stream-application-manager-0.4.0.jar file

Introduction

You can download eagle-stream-application-manager-0.4.0.jar in this page.

License

Apache License

Type List

eagle-stream-application-manager-0.4.0.jar file has the following types.

META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.apache.eagle/eagle-stream-application-manager/pom.properties
META-INF/maven/org.apache.eagle/eagle-stream-application-manager/pom.xml
org.apache.eagle.stream.application.AbstractDynamicApplication.class
org.apache.eagle.stream.application.ApplicationManager.class
org.apache.eagle.stream.application.ApplicationManagerUtils.class
org.apache.eagle.stream.application.ApplicationSchedulerAsyncDAO.class
org.apache.eagle.stream.application.ExecutionPlatform.class
org.apache.eagle.stream.application.ExecutionPlatformFactory.class
org.apache.eagle.stream.application.TaskExecutor.class
org.apache.eagle.stream.application.TopologyException.class
org.apache.eagle.stream.application.TopologyExecutable.class
org.apache.eagle.stream.application.TopologyFactory.class
org.apache.eagle.stream.application.impl.StormDynamicTopology.class
org.apache.eagle.stream.application.impl.StormExecutionPlatform.class
org.apache.eagle.stream.application.scheduler.AppCommandExecutor.class
org.apache.eagle.stream.application.scheduler.AppCommandLoader.class
org.apache.eagle.stream.application.scheduler.ApplicationScheduler.class
org.apache.eagle.stream.application.scheduler.ClearPendingOperation.class
org.apache.eagle.stream.application.scheduler.CommandLoaderEvent.class
org.apache.eagle.stream.application.scheduler.DuplicatedDefinitionException.class
org.apache.eagle.stream.application.scheduler.EagleServiceUnavailableException.class
org.apache.eagle.stream.application.scheduler.HealthCheckerEvent.class
org.apache.eagle.stream.application.scheduler.InitializationEvent.class
org.apache.eagle.stream.application.scheduler.LoadTopologyFailureException.class
org.apache.eagle.stream.application.scheduler.ScheduleEvent.class
org.apache.eagle.stream.application.scheduler.SchedulerCommand.class
org.apache.eagle.stream.application.scheduler.StreamAppCoordinator.class
org.apache.eagle.stream.application.scheduler.TerminatedEvent.class

Pom

eagle-stream-application-manager-0.4.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Licensed to the Apache Software Foundation (ASF) under one or more
  ~ contributor license agreements.  See the NOTICE file distributed with
  ~ this work for additional information regarding copyright ownership.
  ~ The ASF licenses this file to You under the Apache License, Version 2.0
  ~ (the "License"); you may not use this file except in compliance with
  ~ the License.  You may obtain a copy of the License at
  ~
  ~     http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~  Unless required by applicable law or agreed to in writing, software
  ~  distributed under the License is distributed on an "AS IS" BASIS,
  ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~  See the License for the specific language governing permissions and
  ~  limitations under the License.
  ~
  -->

<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>eagle-application-management</artifactId>
        <groupId>org.apache.eagle</groupId>
        <version>0.4.0-incubating</version>
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <artifactId>eagle-stream-application-manager</artifactId>

    <dependencies>
        <dependency>
            <groupId>org.apache.eagle</groupId>
            <artifactId>eagle-application-service</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.eagle</groupId>
            <artifactId>eagle-stream-pipeline</artifactId>
            <version>${project.version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.storm</groupId>
            <artifactId>storm-core</artifactId>
            <version>${storm.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>ch.qos.logback</groupId>
                    <artifactId>logback-classic</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>log4j</groupId>
                    <artifactId>log4j</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.slf4j</groupId>
                    <artifactId>log4j-over-slf4j</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-reflect</artifactId>
        </dependency>
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-compiler</artifactId>
            <version>${scala.version}.0</version>
        </dependency>
        <dependency>
            <groupId>org.scalatest</groupId>
            <artifactId>scalatest_${scala.version}</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.typesafe.akka</groupId>
            <artifactId>akka-actor_${scala.version}</artifactId>
            <version>${akka.actor.version}</version>
        </dependency>
        <dependency>
            <groupId>com.typesafe.akka</groupId>
            <artifactId>akka-testkit_${scala.version}</artifactId>
            <version>${akka.actor.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <scope>compile</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.scala-tools</groupId>
                <artifactId>maven-scala-plugin</artifactId>
                <executions>
                    <execution>
                        <id>scala-compile-first</id>
                        <phase>process-resources</phase>
                        <goals>
                            <goal>add-source</goal>
                            <goal>compile</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>scala-test-compile</id>
                        <phase>process-test-resources</phase>
                        <goals>
                            <goal>testCompile</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <skipTests>true</skipTests>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.scalatest</groupId>
                <artifactId>scalatest-maven-plugin</artifactId>
                <configuration>
                    <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
                    <junitxml>.</junitxml>
                    <filereports>TestSuite.txt</filereports>
                </configuration>
                <executions>
                    <execution>
                        <id>test</id>
                        <goals>
                            <goal>test</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

POM Entry

<dependency>
   <groupId>org.apache.eagle</groupId>
   <artifactId>eagle-stream-application-manager</artifactId>
   <version>0.4.0</version>
</dependency>

Download

If you think the following eagle-stream-application-manager-0.4.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download eagle-stream-application-manager-0.4.0.jar file




PreviousNext

Related