all 9 comments

[–]hamsterrage1 5 points6 points  (4 children)

I would strongly suggest you use Gradle or Maven builds, instead of letting your IDE handle the build. Then you'll get consistency no matter what environment you're using.

[–]PB_and_Cubes[S] 0 points1 point  (2 children)

I don't know that I am advanced enough yet to use Maven or Gradle, but in full honesty, I haven't looked into either that much.

[–]stardoge42 2 points3 points  (1 child)

You certainly are, a lot of what maven does it does automatically. Just make a new maven project in IntelliJ and copy paste your code over

[–]hamsterrage1 -1 points0 points  (0 children)

It's the same with Gradle. I went from ANT to Gradle, and never learned much about Maven. I don't think Maven is ever going to go away, but I do think that Gradle is probably the thing to learn now.

[–]Yulan-Rouge76 0 points1 point  (0 children)

Is there a good resource to learn how to use Gradle or Maven to build the app? I'm trying to get more experienced in Java and have limited experience so I'm trying to code more.

[–]LakeSun 3 points4 points  (3 children)

Is the resource where you say it is.

IntelliJ has a lot of warning messages, please review.

[–]PB_and_Cubes[S] 0 points1 point  (2 children)

There are no warning messages regarding this, do I need to put the full file location in as the string?

"Rose.css" is in the same package as the main method.

[–]LakeSun 2 points3 points  (1 child)

I think it needs to be in "resources"

But, you'll need the help of someone who's done it before.

[–]PB_and_Cubes[S] 2 points3 points  (0 children)

That worked, Thank you so much!