aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
Commit message (Expand)AuthorAgeFilesLines
* Support for Java7u79feature/jdk7u79-supportIvan Dubrov2015-07-101-0/+1
* Fixing Mercurial MQ extension checkIvan Dubrov2015-07-081-6/+6
* Compile natives with -fPICIvan Dubrov2015-07-081-0/+1
* Verify Mercurial is installedIvan Dubrov2015-07-051-15/+26
* Avoiding Turkish i/I issue with toLowerCase(), using ENGLISH localeIvan Dubrov2015-04-281-1/+1
* Updating ASM versionIvan Dubrov2014-04-301-1/+1
* pull should depend on init, clean should check hotspot/makeIvan Dubrov2014-04-301-2/+2
* Migrating to Mercurial MQIvan Dubrov2014-04-301-27/+43
* Automatic HotSpot repository detection (hard-coded for now)light-jdk7u51+3Ivan Dubrov2014-04-281-0/+3
* Fixing native library compilation on x86 vs x64Ivan Dubrov2014-04-251-0/+1
* Overwrite JRE when copyingIvan Dubrov2014-04-251-1/+2
* Enabling natives testsIvan Dubrov2014-04-251-0/+2
* Support for Mac OS X in native code compilationIvan Dubrov2014-04-251-3/+9
* Fixing native code compilationIvan Dubrov2014-04-251-3/+7
* Fixing compilation under WindowsIvan Dubrov2014-04-251-1/+19
* Adding 'full' testsIvan Dubrov2014-04-251-1/+5
* Fixing JRE locations comparisonIvan Dubrov2014-04-251-1/+1
* Should run Java 8 tests on Java 8Ivan Dubrov2014-04-251-1/+2
* Minor fixes to build scriptIvan Dubrov2014-04-251-20/+23
* Adding support for 'full' patchesIvan Dubrov2014-04-251-6/+9
* Renaming test/java to test/java7Ivan Dubrov2014-04-251-0/+2
* Renaming patches to support full flavor in futureIvan Dubrov2014-04-241-1/+1
* Adding Java 7 patch, support running tests on Java 7Ivan Dubrov2014-04-241-13/+9
* Do not run suites in gradle testIvan Dubrov2014-04-241-0/+1
* Use hg import for applying patchIvan Dubrov2014-04-241-1/+5
* Only clean hotspot if hotspot directory existsIvan Dubrov2014-04-241-0/+1
* Extracting DCEVM patch & code into separate projectIvan Dubrov2014-04-241-0/+223
;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.aspectj</groupId> <artifactId>aspectj-parent</artifactId> <version>1.9.22-SNAPSHOT</version> </parent> <artifactId>org.aspectj.matcher</artifactId> <dependencies> <dependency> <groupId>org.aspectj</groupId> <artifactId>util</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>bridge</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>testing-util</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>${lib.commons.logging.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>