<feed xmlns='http://www.w3.org/2005/Atom'>
<title>github/Artifactural.git/src/gradlecomp/java/com, branch main</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/Artifactural.git/'/>
<entry>
<title>Move to net.minecraftforge package, and update license headers.</title>
<updated>2021-01-18T01:40:39+00:00</updated>
<author>
<name>LexManos</name>
<email>LexManos@gmail.com</email>
</author>
<published>2021-01-18T01:35:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/Artifactural.git/commit/?id=4089917696fffbd4b818fb90958d20f0714f93fb'/>
<id>4089917696fffbd4b818fb90958d20f0714f93fb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump project to Gradle 6.8</title>
<updated>2021-01-18T01:28:00+00:00</updated>
<author>
<name>Gabriel Harris-Rouquette</name>
<email>gabizou@me.com</email>
</author>
<published>2021-01-18T00:49:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/Artifactural.git/commit/?id=631cd05e726092c51e95b52bb8a8bb6a2ae2cc42'/>
<id>631cd05e726092c51e95b52bb8a8bb6a2ae2cc42</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use Method handles to bypass J12+ reflection blocking attempt.</title>
<updated>2020-04-04T21:01:02+00:00</updated>
<author>
<name>LexManos</name>
<email>LexManos@gmail.com</email>
</author>
<published>2020-04-04T21:01:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/Artifactural.git/commit/?id=977462b1780785a4ce9500646df07b6a4f638461'/>
<id>977462b1780785a4ce9500646df07b6a4f638461</id>
<content type='text'>
Publish as Multi-Release jar as this API is only available on J9+
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Publish as Multi-Release jar as this API is only available on J9+
</pre>
</div>
</content>
</entry>
<entry>
<title>Be a bit more verbose when trying to reflectively set a final field failing.</title>
<updated>2020-04-03T22:00:46+00:00</updated>
<author>
<name>LexManos</name>
<email>LexManos@gmail.com</email>
</author>
<published>2020-04-03T22:00:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/Artifactural.git/commit/?id=c5ae801c3a51aa6abf05c2eb5d6b3ebe592d02ab'/>
<id>c5ae801c3a51aa6abf05c2eb5d6b3ebe592d02ab</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add compatibility with Gradle 4.10 and above</title>
<updated>2019-04-26T01:47:24+00:00</updated>
<author>
<name>Aaron Hill</name>
<email>aa1ronham@gmail.com</email>
</author>
<published>2019-04-25T20:44:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/Artifactural.git/commit/?id=747c582804bdcd0409417fdd92f7a3042d80b6b5'/>
<id>747c582804bdcd0409417fdd92f7a3042d80b6b5</id>
<content type='text'>
This commits adds compatibility for Gradle 4.10 onward (tested on 4.10
and 5,4), while retainting compatibiliy with 4.9

Due to the ABI-incompatible changes in some internal gradle classes, we
need to use bytecode manipulation to ensure that our built class files
are compatible with both Gradle 4.9 and Gradle &gt;= 4.10

Bytecode manipulation is performed at built time. A custom Gradle task
is used to read in the compiled class files from disk, and write out a
modified version to the final jar artifact.

In order to make as few bytecode modifications as possible, this commit
bumps the Gradle wrapper version to 4.10. This means that we're
compiling against Gradle 4.10, and using bytecode manipulation to retain
compatibility with 4.9. Doing the reverse (compiling against 4.9) would
be significantly more difficult, as we would need to statically
reference classes that exist in Gradle 4.10 but not 4.9 (specifically,
RepositoryDescriptor)

We perform two different bytecode transformations:

1. We modify the call to 'super()' in GradleRepositoryAdapter. In Gradle
4.10, the suepr constructor takes one argument, but in 4.9, it takes
zero arguments. In order to allow GradleRepositoryAdapter to compile
normally, we write a 'fake' call to 'super(null)', and replace with a
call to 'super()'.

2. We delete the method 'getDescriptor' from GradleRepositoryAdapter. In
Gradle 4.9, its return type does not exist, and will cause a
NoClassDefFoundError when Gradle attempts to classload it via
Class#getDeclaredMethods. However, it's necessary to include
'getDescriptor' so that GradleRepositoryAdapter (we need to override the
abstract method in a parent class).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commits adds compatibility for Gradle 4.10 onward (tested on 4.10
and 5,4), while retainting compatibiliy with 4.9

Due to the ABI-incompatible changes in some internal gradle classes, we
need to use bytecode manipulation to ensure that our built class files
are compatible with both Gradle 4.9 and Gradle &gt;= 4.10

Bytecode manipulation is performed at built time. A custom Gradle task
is used to read in the compiled class files from disk, and write out a
modified version to the final jar artifact.

In order to make as few bytecode modifications as possible, this commit
bumps the Gradle wrapper version to 4.10. This means that we're
compiling against Gradle 4.10, and using bytecode manipulation to retain
compatibility with 4.9. Doing the reverse (compiling against 4.9) would
be significantly more difficult, as we would need to statically
reference classes that exist in Gradle 4.10 but not 4.9 (specifically,
RepositoryDescriptor)

We perform two different bytecode transformations:

1. We modify the call to 'super()' in GradleRepositoryAdapter. In Gradle
4.10, the suepr constructor takes one argument, but in 4.9, it takes
zero arguments. In order to allow GradleRepositoryAdapter to compile
normally, we write a 'fake' call to 'super(null)', and replace with a
call to 'super()'.

2. We delete the method 'getDescriptor' from GradleRepositoryAdapter. In
Gradle 4.9, its return type does not exist, and will cause a
NoClassDefFoundError when Gradle attempts to classload it via
Class#getDeclaredMethods. However, it's necessary to include
'getDescriptor' so that GradleRepositoryAdapter (we need to override the
abstract method in a parent class).
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow repos to provide maven-metadata.xml files to list known versions.</title>
<updated>2018-11-08T00:09:09+00:00</updated>
<author>
<name>LexManos</name>
<email>LexManos@gmail.com</email>
</author>
<published>2018-11-08T00:09:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/Artifactural.git/commit/?id=37d713bdb7459cdd44707b350fd12fd59517b415'/>
<id>37d713bdb7459cdd44707b350fd12fd59517b415</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Quiet debug messages.</title>
<updated>2018-11-06T19:12:45+00:00</updated>
<author>
<name>LexManos</name>
<email>LexManos@gmail.com</email>
</author>
<published>2018-11-06T19:12:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/Artifactural.git/commit/?id=564ddae6a4dbc6946092821183708283356c618d'/>
<id>564ddae6a4dbc6946092821183708283356c618d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>More fixes related to missing repo overrides.</title>
<updated>2018-11-03T08:39:30+00:00</updated>
<author>
<name>LexManos</name>
<email>LexManos@gmail.com</email>
</author>
<published>2018-11-03T08:39:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/Artifactural.git/commit/?id=7fcba8a90b00ede253ba75a697ec6ce9bdd20d39'/>
<id>7fcba8a90b00ede253ba75a697ec6ce9bdd20d39</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Temporary way to directly query a fake repo's file output.</title>
<updated>2018-11-03T04:39:00+00:00</updated>
<author>
<name>LexManos</name>
<email>LexManos@gmail.com</email>
</author>
<published>2018-11-03T04:39:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/Artifactural.git/commit/?id=6c19a6e715fd0bf5d7a51963e327f8ce3d50a841'/>
<id>6c19a6e715fd0bf5d7a51963e327f8ce3d50a841</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Jenkinsfile, license headers, publish under net.minecraftforge group and tag based version.</title>
<updated>2018-11-02T19:42:26+00:00</updated>
<author>
<name>LexManos</name>
<email>LexManos@gmail.com</email>
</author>
<published>2018-11-02T19:42:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/Artifactural.git/commit/?id=b480d66d92400d4c1802d9d420a5d93b9eb9eb17'/>
<id>b480d66d92400d4c1802d9d420a5d93b9eb9eb17</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
