Refers to layout of folders and components to help organize a project's files, whether code or resources
Questions tagged [project-structure]
482 questions
1
vote
1 answer
Extends class from above package
I have a package with AbstractTestCase class that I'd like inherit from in all test classes that are in sub-packages, i.e. BaseDaoTestRunner. (See image below)
Problem is that I cannot inherit from that class. I know it's some basic mistake, but…

Jakub Gruber
- 745
- 1
- 11
- 27
1
vote
2 answers
XML Marshalling + Project structure
I want to create a spring-ws web service that eventually marshals a POJO into xml. I'd also like the clients of the web service to unmarshal the xml back into the POJO. How should I structure the projects?
Currently my thinking is:
Domain and…

James
- 1,720
- 5
- 29
- 50
1
vote
1 answer
Design principles like SoC in the context of a common library
I am currently working on a couple of .NET web applications (MVC) that are functionally independent. We've kept our projects for each encapsulated following separation of concerns. So we've ended up with projects…

Saagar Laxman
- 33
- 4
1
vote
0 answers
Project configuration is not up-to-date with pom.xml.
Project configuration is not up-to-date with pom.xml.
Select: Maven->Update Project... from the project context menu or use Quick Fix.

Safdar Akrami
- 245
- 1
- 3
- 12
1
vote
0 answers
Configuring MassTransit in Onion Architecture with ASP.NET MVC and Ninject
I am currently setting up a simple MVC application that is structured as an Onion Architecture. For simplicity's sake, assume that I have the following projects (disregarding the business and database layers, at the moment):
Sample.Web - This is…

Joseph Ferris
- 12,576
- 3
- 46
- 72
1
vote
0 answers
Java project import into eclipse created a broken hierarchy of folders
I imported a Java project into Eclipse workspace and the structure of the project folders broke. Attached the screenshot of the situation. How to safely import a project with out breaking the structure of the project.
The second image shows how the…

user64287
- 53
- 1
- 8
1
vote
0 answers
Import python modules in separate script
Similar questions have been asked many times, but I didn't find a solution yet. I have Python Project that is structured as follows (simplified version).
The problem is to import module1 in myscript.py.
So far, I've written…
user2553692
1
vote
1 answer
How can I create Android module library inside Android module library
I try to create module which is controller for XXX sdk module. So I create new module library (controller) and want to add sub module XXX sdk module. Can you give some advises how to do this?

Alex
- 130
- 11
1
vote
1 answer
Angular: different content and layout based on the customer
I'm developing a web-application with angular and this will be used for different customers. Each customer has his own needs (specific functionality) and style (css). A lot of the functionality is shared though.
What I'm looking for is a total…

Thomas Stubbe
- 1,945
- 5
- 26
- 40
1
vote
0 answers
Android: Project structure for opensource projects (GitHub)
I've mostly been a consumer in the open source world, but now want to start contributing.
Generally the projects hosted on GitHub (Talking about android here) are seen to have the following structure (with a library and a sample module):
I was…

Viral Patel
- 32,418
- 18
- 82
- 110
1
vote
1 answer
Polymer project with several single page applications
I want create the project with Polymer. Project must have several modules (for example: contacts, schedule, receptions, administration ...)
Polymer starter kit scaffold is "one SPA for the project".
How must i organize files, if i want modular…

andrey.ladniy
- 1,664
- 1
- 11
- 27
1
vote
1 answer
Solr and java project version control
I have maven project and i have recently introduced Solr to act as a search indexer for my data. Solr contains configuration files such as schema.xml or solr.xml etc, but these files sit within solr package. I would like to add these files to…

zalis
- 1,191
- 1
- 11
- 20
1
vote
0 answers
Add source set subdirectory for custom language
I'm trying to write a plugin for gradle for python language.
I would like to keep python sources the same way as for another languages, for example in /src/main/python.
In other words, I don't want to add directory like main in…

Filip Malczak
- 3,124
- 24
- 44
1
vote
2 answers
Multithreading project structure
I'm developing a project that involves the interaction between three threads.
The code of the the thread functions is very long, and put everything in a file does not seem a good idea, because it becomes unmanageable.
Compile separately the threads…

Luc
- 11
- 1
1
vote
1 answer
Where to format collections / objects
From front end architectural point of view, what is the most common way to store scripts that perform transformations on collections of objects/models? In what folder would you store it, and what would you name the file / function?
Currently I…

html_programmer
- 18,126
- 18
- 85
- 158