Giter VIP home page Giter VIP logo

aperture-data-studio-sdk's People

Contributors

beechinlim avatar chungkhenhah avatar henbox avatar ianhaydenexp avatar izzulhaziq avatar izzulhaziq-experian avatar kah-wei avatar keelimbeh avatar l8nightcaffeine avatar niick2112 avatar williamexperian avatar yudhistira-arya avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

aperture-data-studio-sdk's Issues

Upgrade to latest johnrengelman.shadow dependency to avoid vulnerable log4j version

Example step gradle builds currently use 'com.github.johnrengelman.shadow' version '5.2.0', which will cause dependency log4j-core and log4j-api 2.11 to be downloaded to the build machine.

Upgrade to 7.1.2 so that log4j 2.17.1 is used instead: https://github.com/johnrengelman/shadow/releases

For this change we'll also need to upgrade to Gradle v7. In gradle-wrapper.properties:
distributionUrl=https://services.gradle.org/distributions/gradle-7.5.1-bin.zip

[Enhancements] Publish the SDK into Public Maven Repository

Hi,

it would be great if we publish the SDK into public maven repository (Maven Central and Bintray jCenter).

I see benefits of doing this:

  1. Client and integrator doesn't have to copy the SDK jar manually into their project.
  2. Easily leverage transitive dependency resolution done via Gradle / Maven.
  3. Better versioning of the SDK. As of now the SDK jar naming itself doesn't indicate the version. You can only get the version if you extract the pom.properties file from the Jar.

RestServiceSampleStep still uses deprecated getConstantByName() method

RestServiceSampleStep still uses getConstantByName():

            if (this.getConstantByName(COLOR_SERVICE_URL_KEY) != null) {
                this.colorService.setBaseUri(this.getConstantByName(COLOR_SERVICE_URL_KEY).toString());
            }

Should be updated to use ServerValueUtil.getGlossaryConstant(...), something like this:

            final Optional<String> baseUri = ServerValueUtil.getGlossaryConstant("COLOR_SERVICE_URL_KEY");
            baseUri.ifPresent(b -> this.colorService.setBaseUri(b));

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.