Questions tagged [subproject]

Use this tag for questions related to a subproject, i.e. a project within a larger project.

is used in questions related to the configuration of a subproject (i.e. a project within a larger project.) in Maven, Xcode, Gradle, etc. .

159 questions
0
votes
1 answer

Problems exporting Mac App from Xcode to the computer desktop

I have a somewhat frustrating problem with exporting a compiled copy of a Mac App to my desktop and have it run. First some background... The app contains two referenced subprojects. The first project creates an archive and the second one creates…
joseph ruth
  • 219
  • 2
  • 12
0
votes
1 answer

How to include a class from a subproject

(Xcode 6.1, Objective-C, iPad) I have an Xcode project with another project--a subproject. I am trying to #import a class from the subproject in the usual way: #import "myAwesomeClass.h" But I'm getting an error: 'myAwesomeClass.h' file not…
kmiklas
  • 13,085
  • 22
  • 67
  • 103
0
votes
1 answer

Playframework Database unit tests fail in subprojects

Unit tests in Play subprojects using a database fail due to this Error: javax.persistence.PersistenceException: The default EbeanServer has not been defined? This is normally set via the ebean.datasource.default property. Otherwise it should be…
0
votes
1 answer

Why sbt does override scala version in subproject?

I have failed to find any answers... that is why I'm here) Below is my case: lazy val sevone = Project(id = "sevone", base = file("sevone")) dependsOn nmsCommons lazy val nmsCommons = Project(id = "nms-commons", base =…
Deil
  • 492
  • 4
  • 14
0
votes
1 answer

How to persist models entity in playframework submodule using jpa/hibernate

I have project in PLAY FRAMEWORK which contain few submodules. Each submodule has folder structure like this: - app: - controllers - **models** - views - conf: - submodulename.routes - build.sbt I would like to persist all java class…
masterdany88
  • 5,041
  • 11
  • 58
  • 132
0
votes
0 answers

Is it possible to have subprojects define their own dependencies?

Using SBT 0.13.5 (and Play framework 2.3.x), is it possible to have a subproject define its own dependencies (and plugins) so that the root project need not be concerned? What I'm looking for is a convenient way to modularise a bigger project into…
megri
  • 1,019
  • 8
  • 10
0
votes
1 answer

Maven Release build on a project - artifact version number

I have a maven project with the following structure Project - pom.xml --- Module1 --- pom.xml for Module1 --- Module2 --- pom.xml for Module2 --- Module3 --- pom.xml for Module3 ------- Module31 ------- pom.xml for Module31 ------- Module32 -------…
AKS
  • 16,482
  • 43
  • 166
  • 258
0
votes
1 answer

How to revert an automatic subproject commit in git

I have couple of submodules in my project and I inadvertently made some changes to the modules. Though I did not explicitly check in the changes, I see the subproject commits when I diff the repository. (Using stash) When I do a git status on my…
quirkystack
  • 1,387
  • 2
  • 17
  • 42
0
votes
0 answers

How to combine two projects into one project?

I want to add an existing project in my existing developed project. I have tried drag those project in my developed project and set the header and other linker flag. I have access only forward declaration using this but I want access imprort…
anuvas
  • 1
  • 1
0
votes
1 answer

Getting path to subproject's Content folder

Currently I have a main (root) ASP.NET MVC project that sits at the base, while all the subprojects are added as references. I'd like to use the subproject's Content folder, but unfortunately Server.MapPath, and Content.Url keeps giving me the root…
matt
  • 2,857
  • 7
  • 33
  • 58
0
votes
1 answer

Play Framework 2.2- Using classes from sub-project in main project

I am trying to use classes from my subproject(NanoKBIndex) in main play project (NanoKBWeb). The Play project "NanoKBWeb" has the following directory structure. └── NanoKBWeb ├── NanoKBIndex ├── app │   ├── Global.java │   ├──…
waqas
  • 124
  • 1
  • 10
0
votes
1 answer

gradle subproject that doesn't have its own directory

My project has a subproject 'core', and way down inside core I want to have a separate subproject 'coercion'. All it has to do is generate one source file and compile it, but it depends on 'core' having been compiled, as the code generator lives…
monty0
  • 1,759
  • 1
  • 14
  • 22
0
votes
1 answer

Best authentication for modular Rails project

I'm still learning Rails, but faced with this project: Web solution should consist of three parts - the website, section for partners and admin panel. Section for partners and admin panel should be available as subdirectories (customer's…
Gris
  • 303
  • 1
  • 3
  • 10
0
votes
1 answer

Link Between View Controllers in Subprojects

I have a main project with a storyboard and then I have a subproject that doesn't have a storyboard. I want to have a button on my storyboard of the main project that when tapped takes you into the main view controller of the subproject. Could…
0
votes
2 answers

Can you run an iOS app within another iOS app with Xcode sub projects?

I have recently purchased some source code of a mini game that I wish to include in my current complex application. However I am having difficulties actually implementing the mini game into my app. Initially I tried copying the source files into my…
Josh
  • 254
  • 3
  • 19
1 2 3
10
11