Coder Social home page Coder Social logo

me1312 / bridge Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 211 KB

Bridge – Adding advanced language features to Java versions new and old

License: Mozilla Public License 2.0

Java 100.00%
bytecode-manipulation java maven maven-plugin plugin recompiler

bridge's Introduction

Bridge ASM

Build Status Build Verison

Bridge is a post-compile maven plugin that injects new advanced functionality into the Java language using existing semantics. Currently, we add the following features:

This project can always benefit from your submission of additional automated testing!

<!-- required to access the api -->
<repositories>
    <repository>
        <id>ME1312.net</id>
        <url>https://dev.me1312.net/maven</url>
    </repository>
</repositories>

<!-- required to access the maven plugin -->
<pluginRepositories>
    <pluginRepository>
        <id>ME1312.net</id>
        <url>https://dev.me1312.net/maven</url>
    </pluginRepository>
</pluginRepositories>

<!-- ensures the api and maven plugin use the same version -->
<properties> <!-- don't forget to replace this value with a real build id! -->
    <bridge.version>00w00a</bridge.version>
</properties>

<!-- provides you an api to compile against that isn't required at runtime -->
<dependencies>
    <dependency>
        <groupId>net.ME1312.ASM</groupId>
        <artifactId>bridge</artifactId>
        <version>${bridge.version}</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

<!-- runs a maven plugin to build your bridges -->
<build>
    <plugins>
        <plugin>
            <groupId>net.ME1312.ASM</groupId>
            <artifactId>bridge-plugin</artifactId>
            <version>${bridge.version}</version>
            <executions>
                <execution>
                    <goals>
                        <goal>bridge</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

bridge's People

Contributors

me1312 avatar

Watchers

 avatar  avatar

bridge's Issues

Adding more automated testing

This is the general thread regarding adding additional automated test scenarios to Bridge ASM. Feel free to tag this issue in relevant pull requests.

What? No testing?

Rest assured that all Bridge features are manually validated before they are shipped, however, as time moves on, it is possible that something in somewhere we might not expect could break – and bytecode inconsistencies, at times, aren't quick to show themselves. A group of rock solid automated tests could potentially catch these issues before they make it to you.

What's left to do, then?

Well, add more test scenarios, of course! The following unchecked items are in need of them:

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.