Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8.0-r4-SNAPSHOT in mavem ? #35

Closed
kaiocezar opened this issue Jul 31, 2015 · 13 comments
Closed

8.0-r4-SNAPSHOT in mavem ? #35

kaiocezar opened this issue Jul 31, 2015 · 13 comments

Comments

@kaiocezar
Copy link

when will be the release of the 8.0-r4-SNAPSHOT in mavem ?, because this simple example with this version

@tbee
Copy link
Member

tbee commented Aug 1, 2015

The nightly builds are present in sonatype's (maven's) snapshot repository. There is one made yesterday.
https://oss.sonatype.org/content/repositories/snapshots/org/jfxtras/

@tbee tbee closed this as completed Aug 1, 2015
@kaiocezar
Copy link
Author

but as I lay in my pom.xml?
When I put

org.jfxtras </ groupId>
jfxtras-book </ artifactId>
8.0-SNAPSHOT-r4 </ version>
</ dependency>
Gets error in pom

@tbee
Copy link
Member

tbee commented Aug 2, 2015

Have you tried leaving out all those spaces? And you might need to include the sonatype snapshot repository. Only Maven central is included by default.

http://stackoverflow.com/questions/16286055/how-to-get-snapshot-from-sonatype

@kaiocezar
Copy link
Author

no, I'm using the mavem. I have to download the project or to use it in my pom.xml?

@tbee
Copy link
Member

tbee commented Aug 3, 2015

Use in in the pom
Include the sonatype snapshot repository

@kaiocezar
Copy link
Author

Could you show me an example of pom.xml there because every time I put on 8.0-r4-SNAPSHOT is in error in my pom.

@tbee
Copy link
Member

tbee commented Aug 3, 2015

what is the error? Also include the full pom file.

@kaiocezar
Copy link
Author

in eclips gets error saying when they think the repository; it just takes the version 8.0-r3, when I put the 8.0-r4-SNAPSHOT he can not find, please you have any examples of pom using the v4

@kaiocezar
Copy link
Author


4.0.0
Clinic
Clinic
0.0.1-SNAPSHOT

src


src

*/.java





maven-compiler-plugin
3.1

1.8
1.8




    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>5.1.9</version>
    </dependency>

    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-core</artifactId>
        <version>4.2.19.Final</version>
    </dependency>

    <!-- for JPA, use hibernate-entitymanager instead of hibernate-core -->
    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-entitymanager</artifactId>
        <version>4.2.19.Final</version>
    </dependency>
    <dependency>
        <groupId>np.com.ngopal</groupId>
        <artifactId>javafx-autocomplete-field</artifactId>
        <version>1.0.0</version>
    </dependency>

    <!-- for JFXtras - Agenda -->
    <dependency>
        <groupId>org.jfxtras</groupId>
        <artifactId>jfxtras-agenda</artifactId>
        <version>8.0-r3</version>
    </dependency>
    <dependency>
        <groupId>org.jfxtras</groupId>
        <artifactId>jfxtras-labs</artifactId>
        <version>8.0-r3</version>
    </dependency>

</dependencies>

@tbee
Copy link
Member

tbee commented Aug 3, 2015

That is because Maven central is included automatically while searching for jars, Sonatype's snaphot is not (snapshots are not allowed in maven central), that is what is missing.

http://stackoverflow.com/questions/16286055/how-to-get-snapshot-from-sonatype

@kaiocezar
Copy link
Author

Thanks man it worked thank you for real, I have not seen so far an agenda API as good as this.

@stdex
Copy link

stdex commented Aug 10, 2015

2 days I'm search problem (I use FXSampler, but in my code LocalDateTimeTextField look differ then in FXSampler, then I realized that I needed to update) ...

image

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

<dependencies>
    <dependency>
        <groupId>org.jfxtras</groupId>
        <artifactId>jfxtras-controls</artifactId>
        <version>8.0-r4-SNAPSHOT</version>
    </dependency>
</dependencies>

@tbee
Copy link
Member

tbee commented Aug 11, 2015

Beware: there were changes in JavaFX 8.20 that forces you the use of 8.0-R4-SNAPSHOT. I will release a R5 soon (when the memory issues have been solved in Agenda).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants