#Downloading An API

37 messages · Page 1 of 1 (latest)

violet lance
thorny quartzBOT
#

This post has been reserved for your question.

Hey @violet lance! Please use /close or the Close Post button above when you're finished. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.

TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.

royal osprey
#

What exactly do you want to download?

violet lance
#

I download but how can i put to my project

royal osprey
#

so which part of that do you want to download?

#

Note that it isn't a Java project

violet lance
#

but ChatGPT said you can using with java

royal osprey
#

Never trust ChatGPT

#

I think you first need to build it somehow

#

check the installation section for that

violet lance
#

But i don't know how can i build it

royal osprey
violet lance
#

okay after i clone it how can i build it ?

royal osprey
#

maybe download gradle

#

and then run gradle build in that directory

violet lance
#

I already download Maven

royal osprey
#

but maybe there are prebuilt binaries

violet lance
#

oh i see i will download Gradle

royal osprey
#

so if you want to use it in a Maven project, you can use

    <repositories>
        <repository>
            <id>snapshots-repo</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>

and

    <dependencies>
        <dependency>
            <groupId>edu.cmu.sphinx</groupId>
            <artifactId>sphinx4-core</artifactId>
            <version>5prealpha-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>edu.cmu.sphinx</groupId>
            <artifactId>sphinx4-data</artifactId>
            <version>5prealpha-SNAPSHOT</version>
        </dependency>
    </dependencies>
#

mabye

#

without you needing to build it yourself

violet lance
#

I just add and they works

#

that's all right? without download or build anything right?

royal osprey
#

yes

violet lance
#

Thank you

thorny quartzBOT
# violet lance Thank you

If you are finished with your post, please close it.
If you are not, please ignore this message.
Note that you will not be able to send further messages here after this post have been closed but you will be able to create new posts.

violet lance
#

❤️

royal osprey
#

Maven is there for managing your project's dependencies

#

it downloads and makes the dependencies listed there available to your application

violet lance
#

I see

#

Thank you sir