Download afterburner.fx-1.7.0.jar file

Introduction

You can download afterburner.fx-1.7.0.jar in this page.

License

The Apache Software License, Version 2.0

Type List

afterburner.fx-1.7.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.airhacks/afterburner.fx/pom.properties
META-INF/maven/com.airhacks/afterburner.fx/pom.xml
com.airhacks.afterburner.configuration.Configurator.class
com.airhacks.afterburner.injection.Injector.class
com.airhacks.afterburner.injection.PresenterFactory.class
com.airhacks.afterburner.views.FXMLView.class
com/airhacks/afterburner/lifecycle/lifecycle.css
com/airhacks/afterburner/lifecycle/lifecycle.fxml
com/airhacks/afterburner/topgun/configuration.properties
com/airhacks/afterburner/topgun/topgun.css
com/airhacks/afterburner/topgun/topgun.fxml
com/airhacks/afterburner/topgun/topgun.properties
javax.inject.Inject.class
javax.inject.Named.class
javax.inject.Provider.class
javax.inject.Qualifier.class
javax.inject.Scope.class
javax.inject.Singleton.class

Pom

afterburner.fx-1.7.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
  <parent>
    <artifactId>oss-parent</artifactId>
    <groupId>org.sonatype.oss</groupId>
    <version>9</version>
    <relativePath>../pom.xml/pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.airhacks</groupId>
  <artifactId>afterburner.fx</artifactId>
  <name>afterburner.fx</name>
  <version>1.7.0</version>
  <description>afterburner.fx is a minimalistic JavaFX MVP framework based on Convention over Configuration and Dependency Injection</description>
  <url>http://afterburner.adam-bien.com</url>
  <inceptionYear>2013</inceptionYear>
  <developers>
    <developer>
      <name>Adam Bien</name>
      <organization>adam-bien.com</organization>
      <organizationUrl>http://adam-bien.com</organizationUrl>
    </developer>
  </developers>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:git@github.com:AdamBien/afterburner.fx.git</connection>
    <developerConnection>scm:git:git@github.com:AdamBien/afterburner.fx.git</developerConnection>
    <tag>v1.7.0</tag>
    <url>scm:git:git@github.com:AdamBien/afterburner.fx.git</url>
  </scm>
  <organization>
    <name>Adam Bien</name>
    <url>http://adam-bien.com</url>
  </organization>
  <build>
    <resources>
      <resource>
        <directory>src/main/java</directory>
        <includes>
          <include>**/*.fxml</include>
          <include>**/*.css</include>
          <include>**/*.properties</include>
        </includes>
      </resource>
      <resource>
        <directory>src/test/java</directory>
        <includes>
          <include>**/*.fxml</include>
          <include>**/*.css</include>
          <include>**/*.properties</include>
        </includes>
      </resource>
      <resource>
        <directory>src/main/resources</directory>
        <includes>
          <include>**/*.xml</include>
        </includes>
      </resource>
    </resources>
    <finalName>afterburner</finalName>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>license-maven-plugin</artifactId>
        <version>1.6</version>
        <executions>
          <execution>
            <id>add-apache-headers</id>
            <phase>process-sources</phase>
            <goals>
              <goal>update-file-header</goal>
            </goals>
            <configuration>
              <licenseName>apache_v2</licenseName>
            </configuration>
          </execution>
        </executions>
        <configuration>
          <verbose>true</verbose>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>2.4.1</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <artifactSet>
                <excludes>
                  <exclude>junit:junit</exclude>
                </excludes>
              </artifactSet>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.6</version>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.4</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <phase>verify</phase>
            <goals>
              <goal>jar-no-fork</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.5.2</version>
        <configuration>
          <tagNameFormat>v@{project.version}</tagNameFormat>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.jacoco</groupId>
        <artifactId>jacoco-maven-plugin</artifactId>
        <version>0.7.0.201403182114</version>
        <executions>
          <execution>
            <goals>
              <goal>prepare-agent</goal>
            </goals>
          </execution>
          <execution>
            <id>report</id>
            <phase>prepare-package</phase>
            <goals>
              <goal>report</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>hamcrest-core</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.10.19</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>
</project>

POM Entry

<dependency>
   <groupId>com.airhacks</groupId>
   <artifactId>afterburner.fx</artifactId>
   <version>1.7.0</version>
</dependency>

Download

If you think the following afterburner.fx-1.7.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download afterburner.fx-1.7.0.jar file




PreviousNext

Related