欧美在线专区-欧美在线伊人-欧美在线一区二区三区欧美-欧美在线一区二区三区-pornodoxxx中国妞-pornodoldoo欧美另类

代寫159.251 Software Design and Construction

代寫 Massey University159.251 - Software Design and ConstructionAssignment 1Deadline and Late Submission PenaltiesYou must submit your final work using the stream submission system no later than 9 October2024 at 11.59 pm. The penalty is 20% deducted from the total possible mark for every daydelay in submission (one day late – out of 80%, two days late then out of 60% … etc.).You are expected to manage your source code and other deliverables using version control.“The Cat Ate My Source Code” is not a valid excuse for a late submission.Contribution to Final Grade of the Course: 22%Please read carefully, as there are many parts that you should be aware of.OverviewYou are to work in self-selected pairs (i.e., select your teammate) to create the programdefined below. You will need to use git to manage source code contribution and integrationbetween the two members. All project issues and changes should be tracked using an issuetracker (set up within your repository).Note: Both group members will receive the same mark unless it is clear that the work ispredominantly that of a single person. These will be sorted out on a case-by-case basis. Thepartition of the work is entirely up to you and your project partner.Part of this assignment is to become familiar with using git for version control. You must useGitHub for this assignment, and the repository must be private.IMPORTANT: use the following conventional name for your repository: 251-Assignment1-2024-FirstName1-FirstName2. For example, if the first student is Sarah and the secondstudent is Li, then the repository name should be (251-Assignment1-2024-Sarah-Li).After submitting your assignment on Stream, you must send an invitation to your GitHubrepository to one of our markers. After the submission is completed, one of the markerswill contact you to request access to your repository.Tools Required● IDE independent: You may develop this in any IDE or code editor you like! The toolsincluded here are available for major IDEs and Maven dependencies.● Git and GitHub(for version control)● GitHub Issue Tracker (for log changes and bugs)● Maven (for dependency management and process automation)● A code metrics tool● Docker for packaging● PMD (for code quality check)● other libraries to perform the different functionalities (you are free to search and useany library that will help in implementing any of the functionalities).Tasks1) Developing a text editor program using Java – see details below.2) Source code and version control:a) create and maintain a git repository on your local machine for your source codeand on a remote repository to provide a central server accessible to bothmembers and also accessible for marking.b) keep an audit trail of commits in the git repository. These will inform part ofthe marking.c) make sure that you actively (almost daily) use git features such as branchingand merging (not only on the last day before submission!).d) write your configurations in YAML file. You must submit at least oneconfiguration file that works with the text editor. This could be a file with thedefault parameters for the text editor, such as the default text format or defaultfont colour.3) Log changes and bugs: keep track of changes and issues – use an issue tracker aspart of your version control. Please use the same issue tracker that is provided by yourGit project hosting site (i.e., the “issues” feature in GitHub). This has to be activelyused!4) Automation: automate your process so it is easier to load files and generate reports.Use Maven to declare all dependencies. If you are using any external libraries, do notinclude any jar files with your submission but add them as Maven dependencies! Also,don’t try to change your Maven files into a different format. The pom file should be anXML file.Build those Maven build tasks in your Continuous Integration (CI) pipeline using GitHubActions. Make sure that the configuration (YAML) file is correctly added.5) Readability: ensure you write clean code, correctly handle exceptions, and addcomments to explain your code. Make your code “human-readable!”.6) Quality: check the quality of your code and outputs2a) use code quality tools to report metrics data of your program. The metrics reportgenerated from your code should be submitted. The process should beautomated and included in your Maven dependencies (see Section 2 below).b) (Bonus) Write unit tests using JUnit to test (at least) the following functionalities:open, save and search (see details below).7) Deployment: package your project and deploy it into a Docket container (a Windowsor Linux container). This must allow the markers to run the Maven project from theDocker container (without the need to install or configure the environment). Make sureto include your Docker file with your project, and to include details on how to load andrun your container in the README file.Make your own text editor!1. The Text EditorYour program is basically a standard text editor (or text processor) – something similar toNotepad, Atom, or Geany. The editor should allow you to write text on it using standard textencoding formats (i.e., ASCII/UTF-8). You should develop this program in Java. Note: astandard text file (mostly) does not need any additional metadata files to assist the reader ininterpretation,The main functionalities of the text editor are:- Full GUI access to the application- Create a menu of options at the top of the editor, similar to the followingThe menu should (at least) include the following sub-menus: File, Search, View, and Help- Implement the following functionalities:o New function: to create a new (fresh) window.o Open function: to read other text files (just standard .txt files). This shouldallow users to navigate the file system to select\search for a file.o The ability to read OpenDocument Text (.odt) files. This is part of the Openfunction.o Save function: save text output into .txt file format. This should allow users tonavigate the file system to save the file in a selected drive/location.o Search: search for text within the screen (this will be tested based on a singleword)o Exit: to quit the program – close all windows.o Select text, Copy, Paste, and Cut (SCPC) capabilities.o Time and Date (T&D): retrieve the current time and data from the OS andplace it at the top of the editor's page.o About: display the names of both team members and a brief message in apopup message box.o Print function: allow your editor to print text by connecting it to the local printerin your machine (similar to any other text editor you have used).3Harder functions● ability to read source code files such as .java, .py, .cpp or similar. differentsyntax should be shown in different colours. For example:● reading and displaying other file formats beyond txt and source code files:mainly, Rich Text Format (RTF) and OpenDocument Text (ODT) format.Hint: you can use an external library to do so.● include a PDF conversion function in your editor, so the file can be saved inPDF format (for standard text files). Use an external library for this, such asApache PDFBox.Note: There is no specific requirement regarding which GUI library you should use, but try tomake your program as cool as possible!2. Code Quality and ManagementOnce development is done, you must report metrics data using a metrics tool. You may usea software metrics tool (see some examples above). Code quality report from PMD shouldalso be submitted with your assignment.a) generate a metrics data report from any software metrics tool (see below for thespecific metrics) and add the report file (.txt or html) to $project$/reports/metricsb) create a new maven goal called “pmd” that should generate a metrics report usingPMD (see below for the specific metrics) and add the report files to$project$/reports/pmd.● Code Size (per class): Lines of Code (LOC) and Number of Methods (NOM)● Code Complexity: Cyclomatic Complexity and code coupling metrics(Coupling Between Objects (CBO) OR Efferent Coupling).● Code Quality Report from PMD. Use only Java Basic rules such as NamingConvention for classes and variables (extract the full report and include it withyour submission).Submitting your assignment45Submission must be completed on Stream using the Assignment submission site.Share your program on your private GitHub repository with us by sending a shareinvitation to the user. This is to track commits on your Git repository.Include a README file in the top level of the projectThe Readme.md is a file with a Markdown syntax (this should be correctly formattedas a markdown) that contains:1. the names & IDs of BOTH MEMBERS of the group.2. clear instructions on how to run your program and if there are any otherdirectories, what they contain.3. for each student, a couple of the most significant git commit IDs show thework of each individual member of the group.4. a link to your private GitHub repository. A marker will contact you aftersubmission to request access to the repository. Note: there will be a penalty ifthe repository is found to be public.Who submits what?Only one member of a group should submit a complete project, the other just submitthe Readme.md file:● member A: submit (through Stream) a single compressed (e.g., zip or tar) filethat contains the assignment (Maven project files and other configurationfiless without the /target directory)o name the compressed file with both members’FirstName_LastName and ID numbers (e.g. Xiaofeng_Liu-87878787-Susan_Jones-01010101.zip)● member B: submit just the README.md file containing your name and that ofthe partner who is submitting the zip/tar file. This is so Stream knows thatyou've submitted something.Markdown Quick guidehttps://docs.github.com/en/get-started/writing-on-github/getting-started-with-writingand-formatting-on-github/basic-writing-and-formatting-syntax6Assessment

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp

Popular articles

主站蜘蛛池模板: 欧美激情第一区| 一个人看的www日本高清视频| 男人j放进女人p全黄午夜视频| 性调教室高h学校| 亚洲国产日韩欧美一区二区三区| a级毛片免费| 高h视频在线免费观看| www四虎在线高清| 亚洲s色大片在线观看| 午夜欧美激情| 国产剧情毛片| 中文字幕制服诱惑| 男人肌肌插女人肌肌| 国产精品igao视频网| 国产日韩美国成人| 《波多野结衣系列mkmp-305》| 两个体校校草被c出水| 国产精品无码久久久久| 任你操在线| 娇妻之欲海泛舟白丽交换 | 欧美最猛黑人xxxx黑人猛交黄| 久久99精品国产自在现线小黄鸭| 精品剧情v国产在免费线观看| 92福利在线| 天天操比| 欧美色视频在线观看| jux434被公每天侵犯的我| 三级黄色小视频| 国产剧果冻传媒星空在线播放| 波多野结衣在线观看中文字幕| 夫醉酒被公侵犯的电影中字版| 亚洲欧美精品日韩欧美| 日韩黄色影片| 男人让女人爽30分钟免费| 国产女合集| 久久精品视频亚洲| 日本电车强视频在线播放| 国产精品视频全国免费观看| 北条麻妃中文字幕在线观看| jizz日本在线观看| 再深点灬舒服了灬太大|