flixel
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.jangaroo.flash.flixel</groupId>
<artifactId>flixel</artifactId>
<version>2.36-beta-1</version>
</dependency><?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
<relativePath />
</parent>
<artifactId>flixel</artifactId>
<groupId>net.jangaroo.flash.flixel</groupId>
<version>2.36-beta-1</version>
<packaging>swc</packaging>
<name>Flixel</name>
<description>
Flixel AS3 2D Game Engine 2.36 Beta, compiled with Jangaroo 4.1.14, using JooFlash 4.1.5.
</description>
<scm>
<connection>scm:git:https://github.com/fwienber/flixel.git</connection>
<developerConnection>scm:git:https://github.com/fwienber/flixel.git</developerConnection>
<url>https://github.com/fwienber/flixel</url>
<tag>flixel-2.36-beta-1</tag>
</scm>
<developers>
<developer>
<name>Adam 'Atomic' Saltsman</name>
<organization>flixel.org</organization>
<organizationUrl>http://www.flixel.org</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
<developer>
<name>Frank Wienberg</name>
<organization>Jangaroo</organization>
<organizationUrl>http://www.jangaroo.net</organizationUrl>
<roles>
<role>jangarooificator</role>
</roles>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jangaroo_version>4.1.14</jangaroo_version>
<jooflash_version>4.1.5</jooflash_version>
</properties>
<build>
<sourceDirectory>src/main/joo</sourceDirectory>
<resources>
<resource>
<directory>src/main/joo</directory>
<includes>
<include>**/*.png</include>
<include>**/*.mp3</include>
<include>**/*.ogg</include>
<include>**/*.ttf</include>
</includes>
<targetPath>joo/classes/</targetPath>
</resource>
</resources>
<plugins>
<plugin>
<groupId>net.jangaroo</groupId>
<artifactId>jangaroo-maven-plugin</artifactId>
<version>${jangaroo_version}</version>
<extensions>true</extensions>
<configuration>
<migrateToTypeScript>true</migrateToTypeScript>
<typeScriptTargetSourceFormatFeatures>7</typeScriptTargetSourceFormatFeatures>
<suppressCommentedActionScriptCode>true</suppressCommentedActionScriptCode>
<extNamespace>org.flixel</extNamespace>
<npmPackageNameReplacers>
<nameReplacer>
<search>^net.jangaroo.flash.flixel__(.*)$</search>
<replace>@jangaroo/$1</replace>
</nameReplacer>
</npmPackageNameReplacers>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.4</version>
<configuration>
<!--
| ===== BE CAREFUL ======
| with 3.5 skip implies skipDeploy. Therefore, we cannot upgrade the site plugin without reworking the
| whole site creation process
-->
<skip>true</skip>
<skipDeploy>true</skipDeploy>
</configuration>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>3.1.0</version>
</extension>
</extensions>
</build>
<dependencies>
<dependency>
<groupId>net.jangaroo</groupId>
<artifactId>jooflash</artifactId>
<version>${jooflash_version}</version>
<type>swc</type>
</dependency>
</dependencies>
<profiles>
<profile>
<id>release-signing</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>